結果

問題 No.2559 眩しい数直線
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-02-18 20:53:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 69,692 KB
最終ジャッジ日時 2024-09-29 00:55:07
合計ジャッジ時間 2,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,680 KB
testcase_01 AC 45 ms
55,492 KB
testcase_02 AC 42 ms
55,876 KB
testcase_03 AC 53 ms
66,688 KB
testcase_04 AC 52 ms
67,196 KB
testcase_05 AC 54 ms
66,228 KB
testcase_06 AC 66 ms
69,488 KB
testcase_07 AC 61 ms
68,384 KB
testcase_08 AC 61 ms
69,004 KB
testcase_09 AC 62 ms
67,816 KB
testcase_10 AC 52 ms
66,044 KB
testcase_11 AC 49 ms
64,420 KB
testcase_12 AC 51 ms
64,400 KB
testcase_13 AC 66 ms
69,164 KB
testcase_14 AC 63 ms
68,752 KB
testcase_15 AC 63 ms
68,376 KB
testcase_16 AC 52 ms
66,044 KB
testcase_17 AC 58 ms
67,352 KB
testcase_18 AC 54 ms
66,320 KB
testcase_19 AC 61 ms
69,692 KB
testcase_20 AC 55 ms
67,788 KB
testcase_21 AC 50 ms
67,056 KB
testcase_22 AC 57 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys, math

input = sys.stdin.readline

N, X = map(int, input().split())
AB = [tuple(map(int, input().split())) for _ in range(N)]

ans = [0] * (X + 1)
for x in range(1, X + 1):

    for a, b in AB:

        ans[x] = max(ans[x], b - abs(x - a))
print(*ans[1:])
0