結果

問題 No.2559 眩しい数直線
ユーザー MasKoaTSMasKoaTS
提出日時 2024-01-03 13:28:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 70,476 KB
最終ジャッジ日時 2024-09-27 18:24:17
合計ジャッジ時間 2,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,496 KB
testcase_01 AC 34 ms
53,552 KB
testcase_02 AC 33 ms
51,808 KB
testcase_03 AC 45 ms
62,704 KB
testcase_04 AC 47 ms
63,032 KB
testcase_05 AC 50 ms
65,532 KB
testcase_06 AC 67 ms
69,700 KB
testcase_07 AC 59 ms
68,708 KB
testcase_08 AC 60 ms
69,888 KB
testcase_09 AC 55 ms
65,896 KB
testcase_10 AC 49 ms
65,108 KB
testcase_11 AC 39 ms
61,060 KB
testcase_12 AC 41 ms
60,952 KB
testcase_13 AC 56 ms
69,000 KB
testcase_14 AC 60 ms
69,396 KB
testcase_15 AC 62 ms
70,476 KB
testcase_16 AC 46 ms
63,276 KB
testcase_17 AC 59 ms
68,400 KB
testcase_18 AC 46 ms
63,644 KB
testcase_19 AC 61 ms
67,984 KB
testcase_20 AC 53 ms
65,824 KB
testcase_21 AC 47 ms
62,872 KB
testcase_22 AC 58 ms
68,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
light = [list(map(int, input().split())) for _ in [0] * n]

ans = [0] * (x + 1)
for a, b in light:
	for i in range(1, x + 1):
		ans[i] = max(ans[i], b - abs(i - a))
print(*ans[1:])
0