結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー miya145592
提出日時 2023-05-06 04:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-11-23 15:32:32
合計ジャッジ時間 2,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
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:
    pos = bisect.bisect_left(Y, x)
    if pos==M:
        ans.append("Infinity")
    else:
        ans.append(Y[pos]-x)
for a in ans:
    print(a)
0