結果
| 問題 | No.201 yukicoderじゃんけん |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-03-11 23:11:31 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 161 bytes |
| 記録 | |
| コンパイル時間 | 653 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 20,764 KB |
| 最終ジャッジ日時 | 2026-03-10 17:05:35 |
| 合計ジャッジ時間 | 3,667 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
fls = input().split()
sls = input().split()
fp = int(fls[1])
sp = int(sls[1])
if fp > sp:
print(fls[0])
elif fp < sp:
print(sls[0])
else:
print(-1)