結果
問題 | No.1441 MErGe |
ユーザー | googol_S0 |
提出日時 | 2021-03-26 22:25:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 656 bytes |
コンパイル時間 | 214 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 116,188 KB |
最終ジャッジ日時 | 2024-11-28 23:57:08 |
合計ジャッジ時間 | 13,250 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
51,840 KB |
testcase_01 | AC | 38 ms
52,352 KB |
testcase_02 | AC | 39 ms
51,712 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 301 ms
114,912 KB |
testcase_29 | WA | - |
ソースコード
def Binit(B,siz): while len(B)<siz+1: B.append(0) while len(B)>siz+1: del B[-1] for i in range(siz+1): B[i]=0 B.append(siz) def Badd(B,a,x): z=a+1 while z<=B[-1]: B[z]+=x z+=(z&(-z)) def Bsum(B,a): r=0 z=a+1 while z>0: r+=B[z] z-=(z&(-z)) return r N,Q=map(int,input().split()) A=list(map(int,input().split())) C=[0]*(N+1) for i in range(N): C[i+1]=C[i]+A[i] X=0 B=[] Binit(B,N+1) for i in range(Q): t,l,r=map(int,input().split()) l-=1 if t==1: Badd(B,r+Bsum(B,r+X-1),r-l-1) X+=r-l-1 else: a,b=l+X,r+X a=Bsum(B,a-1) b=Bsum(B,b-1) #print(l+a,r+b,X) print(C[r+b]-C[l+a])