結果

問題 No.2559 眩しい数直線
ユーザー yaakiyuyaakiyu
提出日時 2023-12-02 14:44:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-09-26 17:15:36
合計ジャッジ時間 2,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 57 ms
61,696 KB
testcase_04 AC 61 ms
62,592 KB
testcase_05 AC 63 ms
64,000 KB
testcase_06 AC 82 ms
66,176 KB
testcase_07 AC 71 ms
65,152 KB
testcase_08 AC 69 ms
65,408 KB
testcase_09 AC 70 ms
64,512 KB
testcase_10 AC 63 ms
63,488 KB
testcase_11 AC 52 ms
59,648 KB
testcase_12 AC 53 ms
60,288 KB
testcase_13 AC 78 ms
65,792 KB
testcase_14 AC 70 ms
65,408 KB
testcase_15 AC 74 ms
65,664 KB
testcase_16 AC 59 ms
62,720 KB
testcase_17 AC 69 ms
65,152 KB
testcase_18 AC 60 ms
62,720 KB
testcase_19 AC 77 ms
65,792 KB
testcase_20 AC 64 ms
64,384 KB
testcase_21 AC 58 ms
62,464 KB
testcase_22 AC 76 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline()[:-1]

n, x = map(int, input().split())
ab = tuple(tuple(map(int, input().split())) for i in range(n))

s = [0]*x

for i in range(n):
	for j in range(x):
		s[j] = max(s[j], ab[i][1]-abs(j-(ab[i][0]-1)))

print(*s)
0