結果

問題 No.1722 [Cherry 3rd Tune C] In my way
ユーザー H3PO4H3PO4
提出日時 2021-10-29 21:26:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-07 09:45:53
合計ジャッジ時間 1,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
lst = []
X = map(int, input().split())
Y = map(int, input().split())
for i, x in enumerate(X):
    lst.append((x, 1, i))
for j, y in enumerate(Y):
    lst.append((y, 2, j))
lst.sort()

tmp = []
ans = ['Infinity'] * N
for x, q, i in lst:
    if q == 1:
        tmp.append((x, i))
    else:
        # assert q == 2
        while tmp:
            x0, i0 = tmp.pop()
            ans[i0] = x - x0
print(*ans, sep='\n')
0