結果
問題 | No.789 範囲の合計 |
ユーザー | Fuyuru |
提出日時 | 2024-02-16 18:21:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,601 bytes |
コンパイル時間 | 370 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 76,624 KB |
最終ジャッジ日時 | 2024-09-28 19:33:59 |
合計ジャッジ時間 | 3,078 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
17,700 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
import sysinput = sys.stdin.readline#print = sys.stdout.writeclass SegTree:def __init__(self,N,op,identity):self.op = opself.identity = identityself.N = Nself.data = dict()def __getitem__(self,key):key += self.Nif key in self.data:return self.data[key]else:return self.identitydef set_value(self,x,val):x += self.Nself.data[x] = valwhile x > 1:x >>= 1if x<<1|0 in self.data:l = self.data[x<<1|0]else:l = self.identityif x<<1|1 in self.data:r = self.data[x<<1|1]else:r = self.identityself.data[x] = self.op(l,r)def fold(self,l,r):res = self.identityl,r = l+self.N,r+self.Nwhile l < r:if l&1:if l in self.data:lv = self.data[l]else:lv = self.identityres = self.op(res,lv)l += 1if r&1:r -= 1if r in self.data:rv = self.data[r]else:rv = self.identityres = self.op(res,rv)l,r = l>>1,r>>1return resseg = SegTree(1000000001,lambda x,y:x+y,0)Q = int(input())ans = 0for _ in range(Q):op,x,y = map(int,input().split())if op == 0:seg.set_value(x,seg[x]+y)else:ans += seg.fold(x,y+1)print(ans)