結果

問題 No.2559 眩しい数直線
ユーザー hiro1729hiro1729
提出日時 2023-12-02 14:33:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 73,216 KB
最終ジャッジ日時 2024-09-26 16:47:46
合計ジャッジ時間 2,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 59 ms
62,592 KB
testcase_04 AC 58 ms
62,080 KB
testcase_05 AC 68 ms
66,304 KB
testcase_06 AC 92 ms
72,576 KB
testcase_07 AC 85 ms
71,680 KB
testcase_08 AC 75 ms
69,376 KB
testcase_09 AC 74 ms
68,736 KB
testcase_10 AC 68 ms
66,944 KB
testcase_11 AC 48 ms
58,880 KB
testcase_12 AC 60 ms
64,512 KB
testcase_13 AC 89 ms
73,216 KB
testcase_14 AC 87 ms
72,576 KB
testcase_15 AC 85 ms
71,424 KB
testcase_16 AC 56 ms
62,848 KB
testcase_17 AC 75 ms
68,480 KB
testcase_18 AC 62 ms
63,872 KB
testcase_19 AC 87 ms
72,448 KB
testcase_20 AC 70 ms
67,584 KB
testcase_21 AC 57 ms
61,824 KB
testcase_22 AC 92 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
ans = [0] * x
for _ in range(n):
	a, b = map(int, input().split())
	a -= 1
	for i in range(max(0, a - b), min(x, b + a + 1)):
		ans[i] = max(ans[i], b - abs(i - a))
print(*ans)
0