結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-28 11:44:51 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 128 bytes |
| コンパイル時間 | 514 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 65,280 KB |
| 最終ジャッジ日時 | 2025-04-28 11:44:54 |
| 合計ジャッジ時間 | 2,369 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
a,b,c=input().split()
d,e,f=input().split()
b,e=int(b),int(e)
if b>e:
print(a)
elif b<e:
print(d)
else:
print(-1)