結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
neko_the_shadow
|
| 提出日時 | 2017-01-24 00:57:40 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 271 bytes |
| コンパイル時間 | 90 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-12-23 07:45:28 |
| 合計ジャッジ時間 | 1,486 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 RE * 5 |
ソースコード
if __name__ == '__main__':
player1, token1, _ = input().split()
player2, token2, _ = input().split()
point1, point2 = int(token1), int(token2)
if point1 == point2: print(-1)
if point1 > point2: print(player1)
if point1 < point2: print(player2)
neko_the_shadow