結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 46 ms
52,224 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 62 ms
63,616 KB
testcase_04 AC 63 ms
63,744 KB
testcase_05 AC 65 ms
63,872 KB
testcase_06 AC 81 ms
67,200 KB
testcase_07 AC 74 ms
66,048 KB
testcase_08 AC 73 ms
66,432 KB
testcase_09 AC 70 ms
65,024 KB
testcase_10 AC 62 ms
63,616 KB
testcase_11 AC 55 ms
60,544 KB
testcase_12 AC 59 ms
62,464 KB
testcase_13 AC 78 ms
66,560 KB
testcase_14 AC 78 ms
66,944 KB
testcase_15 AC 78 ms
66,176 KB
testcase_16 AC 64 ms
64,768 KB
testcase_17 AC 73 ms
66,176 KB
testcase_18 AC 64 ms
63,872 KB
testcase_19 AC 76 ms
66,432 KB
testcase_20 AC 65 ms
64,256 KB
testcase_21 AC 63 ms
63,744 KB
testcase_22 AC 78 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
sys.setrecursionlimit(410000000)
stdin = sys.stdin 
def ni():return int(ns())
def na():return list(map(int, stdin.readline().split()))
def ns():return stdin.readline().strip()
def nm():return map(int,input().split())
def na_1():return list(map(lambda x:int(x)*(-1), stdin.readline().split()))
def na_2():return list(map(lambda x:int(x)-1, stdin.readline().split()))
rnage=range
rnge=range
rage = range


N,X = nm()

AB = [na()for i in range(N)]

ans = []
for x in range(1,X+1):
	mx = 0
	for a,b in AB:
		dist = abs(x-a)
		akarusa = max(b-dist,0)
		mx = max(mx,akarusa)
		
	ans.append(mx)
	
print(*ans)
0