結果

問題 No.789 範囲の合計
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-02-11 22:04:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 699 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 35,712 KB
最終ジャッジ日時 2024-07-19 09:08:11
合計ジャッジ時間 4,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 33 ms
10,752 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/mnt/c/Users/moiki/bash/env/bin/python
N = int(input())

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

from collections import defaultdict
from bisect import bisect_left, bisect_right
pairdic = defaultdict(int)

inf = float("inf")
ans = 0
for q,x,y in Q:
    if q == 0:
        pairdic[x] += y

        idx_cnt = [ (idx, pairdic[idx]) for idx in pairdic.keys()]
        idx_cnt = sorted(idx_cnt)

    if q == 1:
        l,r = x,y
        lidx = bisect_left(  idx_cnt, (l,0))
        ridx = bisect_right(  idx_cnt, (r,inf))
        #print(idx_cnt)
        #print(lidx, ridx)
        ans += sum( list(map(lambda x: x[1], idx_cnt))[lidx:ridx], 0)
        # print("ans: ", ans)

print(ans)
0