結果

問題 No.192 合成数
ユーザー cologne
提出日時 2025-04-28 11:46:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 174 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2025-04-28 11:47:03
合計ジャッジ時間 6,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0