結果

問題 No.2559 眩しい数直線
ユーザー aogeraaogera
提出日時 2024-03-30 16:38:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-09-30 17:35:56
合計ジャッジ時間 2,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 63 ms
65,792 KB
testcase_04 AC 63 ms
66,084 KB
testcase_05 AC 66 ms
66,560 KB
testcase_06 AC 79 ms
70,016 KB
testcase_07 AC 75 ms
69,248 KB
testcase_08 AC 73 ms
69,988 KB
testcase_09 AC 68 ms
67,312 KB
testcase_10 AC 61 ms
65,920 KB
testcase_11 AC 51 ms
62,336 KB
testcase_12 AC 56 ms
64,512 KB
testcase_13 AC 73 ms
69,136 KB
testcase_14 AC 80 ms
71,040 KB
testcase_15 AC 77 ms
69,376 KB
testcase_16 AC 60 ms
65,064 KB
testcase_17 AC 75 ms
70,044 KB
testcase_18 AC 62 ms
66,048 KB
testcase_19 AC 74 ms
68,992 KB
testcase_20 AC 67 ms
67,072 KB
testcase_21 AC 59 ms
65,920 KB
testcase_22 AC 72 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return input()
def N(): return int(input())
def M(): return map(int,input().split())
def L(): return list(map(int,input().split()))

#-----------------------------------------


N,X = M()
A = []
B = []
for i in range(N):
  a,b = M()
  A.append(a)
  B.append(b)

for j in range(X):
  k = j+1
  res = 0
  for i in range(N):
    res = max(res,max(B[i]-abs(k-A[i]),0))
  print(res,end = ' ')
0