結果

問題 No.2559 眩しい数直線
ユーザー mymelochanmymelochan
提出日時 2023-12-02 14:35:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 67,968 KB
最終ジャッジ日時 2024-09-26 16:54:41
合計ジャッジ時間 2,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,272 KB
testcase_01 AC 49 ms
54,272 KB
testcase_02 AC 49 ms
54,528 KB
testcase_03 AC 64 ms
64,640 KB
testcase_04 AC 65 ms
64,512 KB
testcase_05 AC 67 ms
64,768 KB
testcase_06 AC 82 ms
67,968 KB
testcase_07 AC 76 ms
66,688 KB
testcase_08 AC 76 ms
66,944 KB
testcase_09 AC 70 ms
65,280 KB
testcase_10 AC 65 ms
63,872 KB
testcase_11 AC 59 ms
62,208 KB
testcase_12 AC 62 ms
63,488 KB
testcase_13 AC 80 ms
67,328 KB
testcase_14 AC 79 ms
67,456 KB
testcase_15 AC 80 ms
66,944 KB
testcase_16 AC 68 ms
65,152 KB
testcase_17 AC 76 ms
66,560 KB
testcase_18 AC 68 ms
64,384 KB
testcase_19 AC 80 ms
67,456 KB
testcase_20 AC 70 ms
65,280 KB
testcase_21 AC 66 ms
64,768 KB
testcase_22 AC 76 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations
from math import sin,cos
#from math import isqrt #DO NOT USE PyPy

ipt = sys.stdin.readline
iin = lambda :int(ipt())
lmin = lambda :list(map(int,ipt().split()))

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

N,X = lmin()
L = [lmin() for _ in range(N)]
A = [0]*X
for i in range(X):
    for a,b in L:
        A[i] = max(A[i], b-abs(a-1-i))

print(*A)
0