結果
問題 |
No.264 じゃんけん
|
ユーザー |
![]() |
提出日時 | 2025-03-20 18:39:32 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 5,000 ms |
コード長 | 116 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 53,308 KB |
最終ジャッジ日時 | 2025-03-20 18:39:34 |
合計ジャッジ時間 | 1,065 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 |
ソースコード
n, k = map(int, input().split()) if n == k: print("Drew") else: print("Won" if (n + 1) % 3 == k else "Lost")