結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
foumi
|
| 提出日時 | 2019-04-25 07:18:31 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 189 bytes |
| コンパイル時間 | 395 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-11-17 11:54:35 |
| 合計ジャッジ時間 | 1,890 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
player1 = input().split()
player2 = input().split()
p1p = int(player1[1])
p2p = int(player2[1])
if p1p > p2p:
print(player1[0])
elif p1p < p2p:
print(player2[0])
else:
print(-1)
foumi