結果
| 問題 | No.264 じゃんけん |
| コンテスト | |
| ユーザー |
もぐら 3.0
|
| 提出日時 | 2023-11-13 16:05:48 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 67 ms / 5,000 ms |
| + 71µs | |
| コード長 | 144 bytes |
| 記録 | |
| コンパイル時間 | 795 ms |
| コンパイル使用メモリ | 95,948 KB |
| 実行使用メモリ | 78,720 KB |
| 最終ジャッジ日時 | 2026-09-04 12:58:22 |
| 合計ジャッジ時間 | 2,175 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
N,K = map(int,input().split())
if N==K:
print("Drew")
elif N==0 and K==1 or N==1 and K==2 or N==2 and K==0:
print("Won")
else:
print("Lost")
もぐら 3.0