結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー minimumminimum
提出日時 2021-10-29 21:57:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 62,668 KB
最終ジャッジ日時 2024-10-07 11:08:28
合計ジャッジ時間 2,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,468 KB
testcase_01 AC 41 ms
59,492 KB
testcase_02 AC 46 ms
62,628 KB
testcase_03 AC 46 ms
61,140 KB
testcase_04 AC 45 ms
61,536 KB
testcase_05 AC 43 ms
60,264 KB
testcase_06 AC 42 ms
58,672 KB
testcase_07 AC 43 ms
61,732 KB
testcase_08 AC 46 ms
62,668 KB
testcase_09 AC 41 ms
59,324 KB
testcase_10 AC 42 ms
57,864 KB
testcase_11 AC 47 ms
61,764 KB
testcase_12 AC 47 ms
61,464 KB
testcase_13 AC 47 ms
61,284 KB
testcase_14 AC 46 ms
61,204 KB
testcase_15 AC 47 ms
61,152 KB
testcase_16 AC 46 ms
61,420 KB
testcase_17 AC 47 ms
62,372 KB
testcase_18 AC 48 ms
62,392 KB
testcase_19 AC 46 ms
61,016 KB
testcase_20 AC 46 ms
61,756 KB
testcase_21 AC 36 ms
53,220 KB
testcase_22 AC 38 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inf = 10 ** 18
N, M = map(int, input().split())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
Y.sort()
ans = []
for x in X:
    res = inf
    for y in Y:
        if x < y:
            res = y
            break
    if res == inf:
        print('Infinity') ########
    else:
        print(res - x)
0