結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー rlangevinrlangevin
提出日時 2024-08-01 12:06:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 64,672 KB
最終ジャッジ日時 2024-08-01 12:06:32
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,692 KB
testcase_01 AC 44 ms
59,760 KB
testcase_02 AC 54 ms
63,056 KB
testcase_03 AC 52 ms
63,404 KB
testcase_04 AC 51 ms
64,072 KB
testcase_05 AC 48 ms
62,796 KB
testcase_06 AC 41 ms
59,592 KB
testcase_07 AC 47 ms
63,260 KB
testcase_08 AC 53 ms
63,408 KB
testcase_09 AC 42 ms
59,292 KB
testcase_10 AC 41 ms
59,572 KB
testcase_11 AC 58 ms
63,668 KB
testcase_12 AC 55 ms
64,588 KB
testcase_13 AC 58 ms
64,284 KB
testcase_14 AC 56 ms
64,312 KB
testcase_15 AC 56 ms
63,808 KB
testcase_16 AC 57 ms
64,672 KB
testcase_17 AC 57 ms
63,300 KB
testcase_18 AC 57 ms
64,016 KB
testcase_19 AC 56 ms
63,248 KB
testcase_20 AC 55 ms
62,944 KB
testcase_21 AC 36 ms
51,824 KB
testcase_22 AC 35 ms
51,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
inf = 10 ** 18
for x in X:
    ans = inf
    for y in Y:
        if y > x:
            ans = min(ans, y - x)
    print(ans) if ans <= inf // 2 else print("Infinity")
0