結果
| 問題 | No.201 yukicoderじゃんけん |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-05-08 22:53:51 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 154 bytes |
| 記録 | |
| コンパイル時間 | 1,328 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,632 KB |
| 最終ジャッジ日時 | 2026-03-27 04:35:21 |
| 合計ジャッジ時間 | 3,881 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
p1 = input().split()
p2 = input().split()
if int(p1[1]) > int(p2[1]):
print(p1[0])
elif int(p1[1]) < int(p2[1]):
print(p2[0])
else:
print(-1)