結果

問題 No.2559 眩しい数直線
ユーザー KemtyKemty
提出日時 2023-12-02 14:39:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-09-26 17:04:41
合計ジャッジ時間 3,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
80,384 KB
testcase_01 AC 111 ms
80,512 KB
testcase_02 AC 110 ms
80,512 KB
testcase_03 AC 121 ms
80,512 KB
testcase_04 AC 117 ms
80,896 KB
testcase_05 AC 120 ms
81,152 KB
testcase_06 AC 129 ms
81,280 KB
testcase_07 AC 123 ms
81,536 KB
testcase_08 AC 125 ms
81,280 KB
testcase_09 AC 124 ms
81,408 KB
testcase_10 AC 120 ms
81,408 KB
testcase_11 AC 112 ms
80,768 KB
testcase_12 AC 114 ms
81,024 KB
testcase_13 AC 124 ms
81,536 KB
testcase_14 AC 123 ms
81,280 KB
testcase_15 AC 125 ms
81,152 KB
testcase_16 AC 119 ms
80,896 KB
testcase_17 AC 124 ms
81,280 KB
testcase_18 AC 119 ms
80,768 KB
testcase_19 AC 127 ms
81,536 KB
testcase_20 AC 120 ms
81,152 KB
testcase_21 AC 116 ms
80,640 KB
testcase_22 AC 125 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
from heapq import heapify, heappop, heappush
import math
import bisect
from pprint import pprint
from random import randint
import sys
# sys.setrecursionlimit(200000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################    

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