結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー KazunKazun
提出日時 2021-09-06 04:17:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-10-07 08:52:48
合計ジャッジ時間 2,419 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,828 KB
testcase_01 AC 49 ms
59,136 KB
testcase_02 AC 56 ms
62,720 KB
testcase_03 AC 54 ms
63,360 KB
testcase_04 AC 54 ms
63,744 KB
testcase_05 AC 52 ms
62,080 KB
testcase_06 AC 43 ms
58,112 KB
testcase_07 AC 50 ms
62,336 KB
testcase_08 AC 58 ms
62,720 KB
testcase_09 AC 45 ms
59,392 KB
testcase_10 AC 44 ms
58,624 KB
testcase_11 AC 58 ms
63,488 KB
testcase_12 AC 58 ms
63,616 KB
testcase_13 AC 59 ms
63,232 KB
testcase_14 AC 58 ms
63,232 KB
testcase_15 AC 58 ms
63,616 KB
testcase_16 AC 61 ms
64,000 KB
testcase_17 AC 58 ms
63,616 KB
testcase_18 AC 60 ms
63,360 KB
testcase_19 AC 60 ms
63,872 KB
testcase_20 AC 58 ms
63,104 KB
testcase_21 AC 36 ms
51,328 KB
testcase_22 AC 36 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
X=list(map(int,input().split()))
Y=list(map(int,input().split()))

inf=float("inf")
for x in X:
    z=inf
    for y in Y:
        if x<y:
            z=min(z,y)

    if z==inf:
        print("Infinity")
    else:
        print(z-x)
0