結果

問題 No.2559 眩しい数直線
ユーザー takutaku
提出日時 2023-12-02 18:21:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-09-26 21:22:25
合計ジャッジ時間 2,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,456 KB
testcase_01 AC 47 ms
52,224 KB
testcase_02 AC 47 ms
51,840 KB
testcase_03 AC 65 ms
61,696 KB
testcase_04 AC 63 ms
62,208 KB
testcase_05 AC 68 ms
66,304 KB
testcase_06 AC 80 ms
67,072 KB
testcase_07 AC 71 ms
66,176 KB
testcase_08 AC 70 ms
66,176 KB
testcase_09 AC 71 ms
66,432 KB
testcase_10 AC 66 ms
65,792 KB
testcase_11 AC 55 ms
59,136 KB
testcase_12 AC 59 ms
63,104 KB
testcase_13 AC 76 ms
66,816 KB
testcase_14 AC 71 ms
66,176 KB
testcase_15 AC 72 ms
66,816 KB
testcase_16 AC 56 ms
62,336 KB
testcase_17 AC 68 ms
66,176 KB
testcase_18 AC 60 ms
62,976 KB
testcase_19 AC 82 ms
67,200 KB
testcase_20 AC 68 ms
65,664 KB
testcase_21 AC 58 ms
62,208 KB
testcase_22 AC 71 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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