結果
問題 | No.2559 眩しい数直線 |
ユーザー | 21kazu13 |
提出日時 | 2023-12-04 13:13:34 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 82 ms / 2,000 ms |
コード長 | 1,173 bytes |
コンパイル時間 | 1,337 ms |
コンパイル使用メモリ | 82,388 KB |
実行使用メモリ | 72,832 KB |
最終ジャッジ日時 | 2024-09-26 22:56:07 |
合計ジャッジ時間 | 3,291 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
64,256 KB |
testcase_01 | AC | 54 ms
64,512 KB |
testcase_02 | AC | 54 ms
64,640 KB |
testcase_03 | AC | 65 ms
69,496 KB |
testcase_04 | AC | 65 ms
69,632 KB |
testcase_05 | AC | 68 ms
69,632 KB |
testcase_06 | AC | 81 ms
72,832 KB |
testcase_07 | AC | 77 ms
72,064 KB |
testcase_08 | AC | 74 ms
71,936 KB |
testcase_09 | AC | 71 ms
70,400 KB |
testcase_10 | AC | 64 ms
69,120 KB |
testcase_11 | AC | 59 ms
68,096 KB |
testcase_12 | AC | 69 ms
68,224 KB |
testcase_13 | AC | 79 ms
72,044 KB |
testcase_14 | AC | 78 ms
72,232 KB |
testcase_15 | AC | 80 ms
71,808 KB |
testcase_16 | AC | 69 ms
70,140 KB |
testcase_17 | AC | 73 ms
71,808 KB |
testcase_18 | AC | 66 ms
69,888 KB |
testcase_19 | AC | 79 ms
72,344 KB |
testcase_20 | AC | 68 ms
70,272 KB |
testcase_21 | AC | 65 ms
69,632 KB |
testcase_22 | AC | 82 ms
71,680 KB |
ソースコード
#!/usr/bin/env python3 import sys from bisect import bisect_left, bisect_right, insort_left, insort_right # type: ignore from collections import Counter, defaultdict, deque # type: ignore from math import gcd, sqrt, ceil # type: ignore from heapq import heapify, heappop, heappush, heappushpop, heapreplace, merge # type: ignore from itertools import accumulate, combinations, permutations, product # type: ignore from string import ascii_lowercase, ascii_uppercase # type: ignore def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def I(): return int(sys.stdin.buffer.readline()) def LS(): return sys.stdin.buffer.readline().rstrip().decode("utf-8").split() def S(): return sys.stdin.buffer.readline().rstrip().decode("utf-8") def IR(n): return [I() for _ in range(n)] def LIR(n): return [LI() for _ in range(n)] def SR(n): return [S() for _ in range(n)] def LSR(n): return [LS() for _ in range(n)] def SRL(n): return [list(S()) for _ in range(n)] N,X = LI() lights = LIR(N) ans = [] for x in range(1,X+1): cand = 0 for a,b in lights: cand = max( cand, b-abs(x-a) ) ans.append(cand) print(*ans)