結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー harapecoharapeco
提出日時 2022-03-16 11:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 63,532 KB
最終ジャッジ日時 2024-09-24 07:45:08
合計ジャッジ時間 4,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,816 KB
testcase_01 AC 46 ms
59,588 KB
testcase_02 AC 145 ms
62,000 KB
testcase_03 AC 123 ms
62,996 KB
testcase_04 AC 79 ms
61,760 KB
testcase_05 AC 50 ms
60,728 KB
testcase_06 AC 42 ms
58,712 KB
testcase_07 AC 46 ms
60,816 KB
testcase_08 AC 206 ms
62,120 KB
testcase_09 AC 51 ms
59,768 KB
testcase_10 AC 41 ms
58,992 KB
testcase_11 AC 245 ms
63,532 KB
testcase_12 AC 239 ms
61,700 KB
testcase_13 AC 235 ms
62,144 KB
testcase_14 AC 243 ms
62,380 KB
testcase_15 AC 240 ms
62,676 KB
testcase_16 AC 228 ms
62,016 KB
testcase_17 AC 248 ms
62,360 KB
testcase_18 AC 239 ms
62,892 KB
testcase_19 AC 244 ms
62,852 KB
testcase_20 AC 241 ms
62,944 KB
testcase_21 AC 36 ms
53,684 KB
testcase_22 AC 37 ms
52,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
X = list(map(int,input().split()))
Y = list(map(int,input().split()))
Y.sort()
for i in X:
    for j in Y:
        if i < j:
            print(j-i)
            break
        elif Y.index(j) == len(Y)-1:
            print('Infinity')
0