結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
honeycomb
|
| 提出日時 | 2018-09-10 09:40:33 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 102 bytes |
| コンパイル時間 | 354 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-12-26 02:57:06 |
| 合計ジャッジ時間 | 1,096 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 4 |
ソースコード
n = input()
if n == "0 0":
print("Drew")
elif n == "2 0":
print("Won")
else:
print("Lost")
honeycomb