結果

問題 No.185 和風
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-23 07:24:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 151 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 62,700 KB
最終ジャッジ日時 2024-06-30 12:47:33
合計ジャッジ時間 1,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,540 KB
testcase_01 AC 52 ms
61,336 KB
testcase_02 AC 51 ms
62,152 KB
testcase_03 AC 52 ms
62,020 KB
testcase_04 AC 51 ms
62,700 KB
testcase_05 AC 38 ms
53,216 KB
testcase_06 AC 53 ms
62,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = set()
for _ in range(int(input())):
    X,Y = map(int,input().split())
    S.add(Y-X)

x = S.pop()
if S or x <= 0:
    print(-1)
else:
    print(x)
0