結果

問題 No.2559 眩しい数直線
ユーザー 👑 KazunKazun
提出日時 2024-01-21 00:48:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 73,552 KB
最終ジャッジ日時 2024-09-28 05:47:33
合計ジャッジ時間 2,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,240 KB
testcase_01 AC 38 ms
52,840 KB
testcase_02 AC 38 ms
53,188 KB
testcase_03 AC 54 ms
63,540 KB
testcase_04 AC 50 ms
63,856 KB
testcase_05 AC 54 ms
66,320 KB
testcase_06 AC 68 ms
73,552 KB
testcase_07 AC 60 ms
70,568 KB
testcase_08 AC 61 ms
70,244 KB
testcase_09 AC 61 ms
68,796 KB
testcase_10 AC 49 ms
63,580 KB
testcase_11 AC 44 ms
60,324 KB
testcase_12 AC 48 ms
61,504 KB
testcase_13 AC 66 ms
72,388 KB
testcase_14 AC 62 ms
70,488 KB
testcase_15 AC 67 ms
73,444 KB
testcase_16 AC 48 ms
64,368 KB
testcase_17 AC 60 ms
70,460 KB
testcase_18 AC 50 ms
64,140 KB
testcase_19 AC 67 ms
72,788 KB
testcase_20 AC 55 ms
67,904 KB
testcase_21 AC 47 ms
63,636 KB
testcase_22 AC 63 ms
71,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N, X = map(int, input().split())

    A = [0] * N; B = [0] * N
    for i in range(N):
        A[i], B[i] = map(int, input().split())

    return [max(max([B[i] - abs(j - A[i]) for i in range(N)]), 0) for j in range(1, X + 1)]

#==================================================
print(*solve())
0