結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
surprise_tanaka
|
| 提出日時 | 2018-11-19 16:06:53 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 170 bytes |
| コンパイル時間 | 295 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-24 15:18:38 |
| 合計ジャッジ時間 | 1,777 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 RE * 4 |
ソースコード
SA,PA,XA = map(str,input().split())
SB,PB,XB = map(str,input().split())
if PA == PB:
print(-1)
elif max(int(PA),int(PB)) == int(PA):
print(SA)
else:
print(SB)
surprise_tanaka