結果

問題 No.2559 眩しい数直線
ユーザー KoiKoi
提出日時 2023-12-02 15:51:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,632 KB
最終ジャッジ日時 2024-09-26 19:24:23
合計ジャッジ時間 2,791 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 45 ms
51,968 KB
testcase_03 AC 61 ms
63,488 KB
testcase_04 AC 62 ms
63,616 KB
testcase_05 AC 66 ms
64,512 KB
testcase_06 AC 86 ms
69,632 KB
testcase_07 AC 80 ms
67,968 KB
testcase_08 AC 80 ms
68,708 KB
testcase_09 AC 73 ms
65,536 KB
testcase_10 AC 63 ms
63,360 KB
testcase_11 AC 52 ms
60,076 KB
testcase_12 AC 56 ms
61,696 KB
testcase_13 AC 80 ms
67,584 KB
testcase_14 AC 83 ms
68,608 KB
testcase_15 AC 85 ms
68,480 KB
testcase_16 AC 60 ms
63,616 KB
testcase_17 AC 77 ms
67,968 KB
testcase_18 AC 62 ms
63,616 KB
testcase_19 AC 80 ms
68,352 KB
testcase_20 AC 70 ms
65,664 KB
testcase_21 AC 61 ms
63,360 KB
testcase_22 AC 79 ms
67,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
AB=[list(map(int,input().split())) for _ in range(N)]
ans=[]
for i in range(X):
    c=0
    for j in range(N):
        c=max(c,AB[j][1]-abs(i+1-AB[j][0]))
    ans.append(c)
print(*ans)
0