結果

問題 No.789 範囲の合計
ユーザー titiatitia
提出日時 2019-05-24 20:43:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 716 ms / 1,000 ms
コード長 641 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 56,396 KB
最終ジャッジ日時 2024-09-17 10:14:42
合計ジャッジ時間 7,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 662 ms
49,468 KB
testcase_03 AC 327 ms
25,472 KB
testcase_04 AC 639 ms
49,232 KB
testcase_05 AC 598 ms
49,016 KB
testcase_06 AC 665 ms
49,072 KB
testcase_07 AC 336 ms
25,728 KB
testcase_08 AC 504 ms
37,772 KB
testcase_09 AC 458 ms
37,600 KB
testcase_10 AC 716 ms
56,396 KB
testcase_11 AC 617 ms
48,740 KB
testcase_12 AC 590 ms
48,744 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 24 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n=int(input())
Q=[list(map(int,input().split())) for i in range(n)]

SET=set()
for x,a,b in Q:
    if x==0:
        SET.add(a)
    else:
        SET.add(a)
        SET.add(b)

DICT={x:i for i,x in enumerate(sorted(SET))}
N=len(DICT)+2

BIT=[0]*N

def update(v,w):#vにwを加える
    while v<N:
        BIT[v]+=w
        v+=(v&(-v))

def getvalue(v):#0~vの区間の和を求める
    ANS=0
    while v>0:
        ANS+=BIT[v]
        v-=(v&(-v))
    return ANS

ANS=0
for x,a,b in Q:
    if x==0:
        update(DICT[a]+1,b)
    else:
        ANS+=getvalue(DICT[b]+1)-getvalue(DICT[a])

print(ANS)
0