結果

問題 No.2559 眩しい数直線
ユーザー K5h1n0K5h1n0
提出日時 2023-12-02 14:47:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 71,808 KB
最終ジャッジ日時 2024-09-26 17:24:59
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,328 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 61 ms
64,128 KB
testcase_04 AC 64 ms
64,640 KB
testcase_05 AC 77 ms
68,736 KB
testcase_06 AC 84 ms
71,808 KB
testcase_07 AC 76 ms
69,248 KB
testcase_08 AC 72 ms
67,584 KB
testcase_09 AC 74 ms
69,248 KB
testcase_10 AC 68 ms
66,688 KB
testcase_11 AC 46 ms
58,880 KB
testcase_12 AC 55 ms
62,080 KB
testcase_13 AC 83 ms
71,808 KB
testcase_14 AC 80 ms
69,248 KB
testcase_15 AC 79 ms
70,144 KB
testcase_16 AC 60 ms
64,256 KB
testcase_17 AC 74 ms
68,992 KB
testcase_18 AC 69 ms
66,176 KB
testcase_19 AC 81 ms
70,400 KB
testcase_20 AC 74 ms
68,352 KB
testcase_21 AC 65 ms
65,536 KB
testcase_22 AC 79 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x = map(int,input().split())
z = [0]*x
for _ in range(n):
    a,b = map(int,input().split())
    now = a-1
    for i in range(b):
        sei_zahyo = now + i
        hu_zahyo = now - i
        if 0 <= sei_zahyo < x:
            z[sei_zahyo] = max(z[sei_zahyo],b-i)
        if 0 <= hu_zahyo < x:
            z[hu_zahyo] = max(z[hu_zahyo],b-i)
print(*z)
0