結果

問題 No.2662 Installing Cell Towers
ユーザー ntudantuda
提出日時 2024-03-10 21:07:56
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 448 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 93,592 KB
最終ジャッジ日時 2024-09-29 21:47:18
合計ジャッジ時間 3,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 83 ms
77,568 KB
testcase_05 AC 179 ms
93,184 KB
testcase_06 AC 144 ms
84,992 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 139 ms
86,824 KB
testcase_09 AC 82 ms
77,184 KB
testcase_10 AC 154 ms
92,668 KB
testcase_11 AC 145 ms
90,368 KB
testcase_12 RE -
testcase_13 AC 151 ms
86,528 KB
testcase_14 AC 172 ms
93,184 KB
testcase_15 AC 163 ms
93,304 KB
testcase_16 AC 41 ms
52,608 KB
testcase_17 AC 161 ms
93,256 KB
testcase_18 AC 157 ms
93,592 KB
testcase_19 AC 36 ms
52,224 KB
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
PQ = [list(map(int,input().split())) for _ in range(M)]
A = [0] * N
B = [0] * N
C = [0] * N

for p,q in PQ:
    p -= 1
    if p - q + 1 < 0:
        A[0] += q - p
        A[1] -= q - p - 1
    else:
        A[p - q + 1] += 1
    if p + 1 < N:
        A[p + 1] -= 2
    if p + q + 1 < N:
        A[p + q + 1] += 1
B[0] = A[0]
C[0] = A[0]
for i in range(1,N):
    B[i] = B[i-1] + A[i]
    C[i] = C[i-1] + B[i]
print(*C)
0