結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー ニックネームニックネーム
提出日時 2024-10-18 23:01:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,890 ms / 6,000 ms
コード長 625 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 167,896 KB
最終ジャッジ日時 2024-11-15 11:55:45
合計ジャッジ時間 28,074 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,912 KB
testcase_01 AC 44 ms
55,040 KB
testcase_02 AC 43 ms
54,784 KB
testcase_03 AC 43 ms
55,040 KB
testcase_04 AC 43 ms
55,296 KB
testcase_05 AC 43 ms
54,912 KB
testcase_06 AC 43 ms
55,424 KB
testcase_07 AC 50 ms
61,952 KB
testcase_08 AC 82 ms
72,704 KB
testcase_09 AC 66 ms
66,816 KB
testcase_10 AC 62 ms
65,408 KB
testcase_11 AC 1,096 ms
140,356 KB
testcase_12 AC 2,353 ms
155,172 KB
testcase_13 AC 2,394 ms
107,648 KB
testcase_14 AC 1,104 ms
157,912 KB
testcase_15 AC 772 ms
155,548 KB
testcase_16 AC 2,179 ms
96,640 KB
testcase_17 AC 535 ms
111,360 KB
testcase_18 AC 1,694 ms
108,928 KB
testcase_19 AC 2,890 ms
109,056 KB
testcase_20 AC 747 ms
132,008 KB
testcase_21 AC 1,825 ms
167,896 KB
testcase_22 AC 1,792 ms
167,884 KB
testcase_23 AC 957 ms
101,768 KB
testcase_24 AC 40 ms
55,072 KB
testcase_25 AC 41 ms
55,296 KB
testcase_26 AC 2,017 ms
167,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self,n):
        self.n = n; self.k = [0]*(n+1)
    def a(self,i,x):
        while i<=self.n: self.k[i] += x; i += i&-i
    def s(self,i):
        t = 0
        while i>0: t += self.k[i]; i -= i&-i
        return t
    def r(self,l,r): return self.s(r)-self.s(l-1)
n,q,l = map(int,input().split())
m = 200001; b = BIT(m); c = BIT(m); f = 1
for v in map(int,input().split()): b.a(v+1,1); c.a(v+1,v)
for _ in range(q):
    p = list(map(int,input().split()))
    if p[0]==1: b.a(p[1]+1,1); c.a(p[1]+1,p[1])
    if p[0]==2: print(b.r(p[1]+1,p[2]+1),c.r(p[1]+1,p[2]+1)); f = 0
if f: print("Not Found!")
0