結果

問題 No.789 範囲の合計
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-18 19:41:01
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 581 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 131,568 KB
最終ジャッジ日時 2024-09-21 09:15:33
合計ジャッジ時間 5,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 437 ms
119,848 KB
testcase_03 AC 205 ms
75,904 KB
testcase_04 AC 495 ms
119,308 KB
testcase_05 AC 415 ms
111,488 KB
testcase_06 AC 407 ms
119,644 KB
testcase_07 AC 227 ms
75,776 KB
testcase_08 MLE -
testcase_09 AC 383 ms
119,320 KB
testcase_10 AC 373 ms
106,436 KB
testcase_11 MLE -
testcase_12 MLE -
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

MAX = 10 ** 9 + 5
d = dict()


def _sum(i):
    res = 0
    while i > 0:
        res += d.get(i - 1, 0)
        i -= i & -i
    return res


def add(i, x):
    i += 1
    tmp = dict()
    while i < MAX:
        tmp[i - 1] = x + d.get(i - 1, 0)
        i += i & -i
    d.update(tmp)


def bitsum(l, r):
    return _sum(r) - _sum(l)



n = int(input())
ans = 0
for _ in range(n):
    k, x, y = map(int, input().split())
    if k == 0:
        add(x, y)
    else:
        ans += bitsum(x, y + 1)
print(ans)
0