結果
| 問題 | No.264 じゃんけん |
| コンテスト | |
| ユーザー |
iwbchi
|
| 提出日時 | 2020-08-17 17:19:57 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 20 ms / 5,000 ms |
| + 260µs | |
| コード長 | 304 bytes |
| 記録 | |
| コンパイル時間 | 55 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2026-09-13 22:38:41 |
| 合計ジャッジ時間 | 1,300 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 |
ソースコード
N, K = map(int, input().split())
if N == K:
print("Drew")
elif N == 0:
if K == 1:
print("Won")
else:
print("Lost")
elif N == 1:
if K == 2:
print("Won")
else:
print("Lost")
elif N == 2:
if K == 0:
print("Won")
else:
print("Lost")
iwbchi