結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
zadok
|
| 提出日時 | 2020-04-27 17:39:32 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 147 bytes |
| コンパイル時間 | 407 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-11-22 00:24:48 |
| 合計ジャッジ時間 | 1,274 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 9 |
ソースコード
a=int(input())
b=int(input())
if a==b:
print("Drew")
elif a+1==b:
print("Won")
elif a==2 and b==0:
print("Won")
else:
print("Lost")
zadok