結果
| 問題 | No.264 じゃんけん |
| コンテスト | |
| ユーザー |
h_enjin
|
| 提出日時 | 2016-02-12 05:06:11 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 199 bytes |
| 記録 | |
| コンパイル時間 | 298 ms |
| コンパイル使用メモリ | 21,340 KB |
| 実行使用メモリ | 20,552 KB |
| 最終ジャッジ日時 | 2026-09-02 03:54:54 |
| 合計ジャッジ時間 | 3,495 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 9 |
ソースコード
raw = input()
battle = raw.split()
me = int(battle[0])
player = int(battle[1])
resul = (me - player + 3) % 3
if result == 0:
print("Drew")
elif result == 1:
print("Won")
else:
print("Lost")
h_enjin