結果
問題 |
No.264 じゃんけん
|
ユーザー |
![]() |
提出日時 | 2020-05-02 19:06:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 189 bytes |
コンパイル時間 | 336 ms |
コンパイル使用メモリ | 82,464 KB |
実行使用メモリ | 54,088 KB |
最終ジャッジ日時 | 2024-12-31 06:17:02 |
合計ジャッジ時間 | 1,424 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 3 WA * 6 |
ソースコード
import sys input = sys.stdin.buffer.readline me, op = map(int, input().split()) if (me + 1) % 3 == op: print('Lost') elif (me - 1) % 3 == op: print('Won') else: print('Drew')