結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
strn5
|
| 提出日時 | 2019-07-22 01:34:25 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 150 bytes |
| コンパイル時間 | 103 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-06-23 07:10:40 |
| 合計ジャッジ時間 | 964 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 9 |
ソースコード
I, Y = map(int, input().split())
result = I - Y
if result == 0:
print(Drew)
elif result == -1 or result == 2:
print(Won)
else:
print(Lose)
strn5