結果

問題 No.2559 眩しい数直線
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-12-02 15:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,168 KB
最終ジャッジ日時 2024-09-26 19:14:34
合計ジャッジ時間 2,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 46 ms
51,712 KB
testcase_02 AC 44 ms
51,968 KB
testcase_03 AC 65 ms
64,896 KB
testcase_04 AC 65 ms
64,512 KB
testcase_05 AC 69 ms
65,792 KB
testcase_06 AC 90 ms
71,168 KB
testcase_07 AC 83 ms
69,376 KB
testcase_08 AC 84 ms
70,016 KB
testcase_09 AC 79 ms
67,200 KB
testcase_10 AC 66 ms
64,640 KB
testcase_11 AC 54 ms
59,776 KB
testcase_12 AC 59 ms
62,464 KB
testcase_13 AC 85 ms
69,120 KB
testcase_14 AC 86 ms
70,720 KB
testcase_15 AC 87 ms
70,016 KB
testcase_16 AC 64 ms
64,896 KB
testcase_17 AC 81 ms
68,864 KB
testcase_18 AC 66 ms
64,440 KB
testcase_19 AC 84 ms
69,504 KB
testcase_20 AC 74 ms
65,920 KB
testcase_21 AC 63 ms
65,152 KB
testcase_22 AC 85 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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