結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー dangodango
提出日時 2023-06-25 21:34:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 76,140 KB
最終ジャッジ日時 2024-07-02 15:08:55
合計ジャッジ時間 2,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,692 KB
testcase_01 AC 61 ms
75,368 KB
testcase_02 AC 86 ms
75,816 KB
testcase_03 AC 79 ms
75,712 KB
testcase_04 AC 68 ms
75,528 KB
testcase_05 AC 58 ms
75,340 KB
testcase_06 AC 47 ms
65,516 KB
testcase_07 AC 53 ms
74,064 KB
testcase_08 AC 91 ms
75,660 KB
testcase_09 AC 57 ms
75,616 KB
testcase_10 AC 49 ms
66,936 KB
testcase_11 AC 95 ms
75,676 KB
testcase_12 AC 91 ms
75,920 KB
testcase_13 AC 95 ms
76,140 KB
testcase_14 AC 91 ms
75,864 KB
testcase_15 AC 94 ms
76,076 KB
testcase_16 AC 97 ms
75,644 KB
testcase_17 AC 99 ms
75,984 KB
testcase_18 AC 96 ms
76,108 KB
testcase_19 AC 100 ms
76,100 KB
testcase_20 AC 104 ms
75,668 KB
testcase_21 AC 36 ms
52,752 KB
testcase_22 AC 36 ms
53,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
x = list(map(int, input().split()))
k = list(map(int, input().split()))
a = [min(list(filter(lambda x: x > i, k))) if list(filter(lambda x: x > i, k)) else 0 for i in x]
print('\n'.join([str(i - j) if i - j >= 0 else "Infinity" for i, j in zip(a, x)]))
0