結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
Watson
|
| 提出日時 | 2017-07-27 15:39:10 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 157 bytes |
| コンパイル時間 | 177 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-10-10 02:07:43 |
| 合計ジャッジ時間 | 1,497 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
Sa = input().split()
Sb = input().split()
if int(Sa[1]) == int(Sb[1]):
print("-1")
elif int(Sa[1]) > int(Sb[1]):
print(Sa[0])
else:
print(Sb[0])
Watson