結果

問題 No.2559 眩しい数直線
ユーザー watayuwatayu
提出日時 2023-12-02 15:10:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,063 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-26 18:12:01
合計ジャッジ時間 9,849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 144 ms
10,752 KB
testcase_04 AC 164 ms
10,752 KB
testcase_05 AC 265 ms
10,752 KB
testcase_06 AC 1,063 ms
11,008 KB
testcase_07 AC 600 ms
10,752 KB
testcase_08 AC 518 ms
10,752 KB
testcase_09 AC 493 ms
10,880 KB
testcase_10 AC 178 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 62 ms
10,752 KB
testcase_13 AC 840 ms
10,880 KB
testcase_14 AC 749 ms
10,880 KB
testcase_15 AC 1,062 ms
11,008 KB
testcase_16 AC 47 ms
10,880 KB
testcase_17 AC 491 ms
10,752 KB
testcase_18 AC 165 ms
10,880 KB
testcase_19 AC 874 ms
11,008 KB
testcase_20 AC 299 ms
10,752 KB
testcase_21 AC 71 ms
10,752 KB
testcase_22 AC 704 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int, input().split())
info = [None for i in range(N)]
Xes = [0 for i in range(N)]
for i in range(N):
    A, B = map(int, input().split())
    info[i] = [A, B]
    Xes[i] = A
Xes.sort()
info.sort(key=lambda x: x[0])
ans = []
for i in range(1,X+1):
    temp = 0
    for j in range(N+1):
        if j == 0:
            temp = max(temp, info[0][1]-abs(i-info[0][0]))
        elif j == N:
            temp = max(temp, info[N-1][1]-abs(i-info[N-1][0]))
        else:
            if info[j][1]-abs(i-info[j][0]) > info[j-1][1]-abs(i-info[j-1][0]):
                temp = max(temp, info[j][1]-abs(i-info[j][0]))
            else:
                temp = max(temp, info[j-1][1]-abs(i-info[j-1][0]))
    ans.append(temp)
print(*ans)
0