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