結果
| 問題 |
No.201 yukicoderじゃんけん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-28 11:47:29 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 42 ms / 5,000 ms |
| コード長 | 174 bytes |
| コンパイル時間 | 476 ms |
| コンパイル使用メモリ | 82,048 KB |
| 実行使用メモリ | 53,120 KB |
| 最終ジャッジ日時 | 2025-04-28 11:47:31 |
| 合計ジャッジ時間 | 1,616 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
import sys
sys.set_int_max_str_digits(10**6)
a,b,c=input().split()
d,e,f=input().split()
b,e=int(b),int(e)
if b>e:
print(a)
elif b<e:
print(d)
else:
print(-1)