結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

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