結果

問題 No.2559 眩しい数直線
ユーザー n_nan_na
提出日時 2024-01-01 10:11:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 70,596 KB
最終ジャッジ日時 2024-09-27 17:19:43
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,428 KB
testcase_01 AC 34 ms
52,072 KB
testcase_02 AC 35 ms
52,448 KB
testcase_03 AC 52 ms
65,816 KB
testcase_04 AC 52 ms
64,892 KB
testcase_05 AC 58 ms
69,136 KB
testcase_06 AC 63 ms
69,508 KB
testcase_07 AC 64 ms
68,852 KB
testcase_08 AC 59 ms
68,756 KB
testcase_09 AC 62 ms
70,088 KB
testcase_10 AC 57 ms
69,132 KB
testcase_11 AC 41 ms
60,672 KB
testcase_12 AC 48 ms
66,256 KB
testcase_13 AC 64 ms
69,276 KB
testcase_14 AC 60 ms
69,464 KB
testcase_15 AC 63 ms
70,116 KB
testcase_16 AC 50 ms
64,748 KB
testcase_17 AC 58 ms
68,940 KB
testcase_18 AC 51 ms
65,524 KB
testcase_19 AC 64 ms
70,596 KB
testcase_20 AC 60 ms
69,760 KB
testcase_21 AC 51 ms
66,176 KB
testcase_22 AC 61 ms
69,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X = map(int,input().split())

L = [0]*X
for _ in range(N):
    a,b = map(int,input().split())
    for j in range(X):
        l = max(b - abs(a-1 - j), 0)
        L[j] = max(L[j], l)
    
print(*L)
0