結果

問題 No.876 Range Compress Query
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 17:54:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 763 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 91,372 KB
最終ジャッジ日時 2024-09-09 17:54:15
合計ジャッジ時間 5,697 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,388 KB
testcase_01 AC 62 ms
68,340 KB
testcase_02 AC 43 ms
59,872 KB
testcase_03 AC 81 ms
77,340 KB
testcase_04 AC 49 ms
63,864 KB
testcase_05 AC 47 ms
62,584 KB
testcase_06 WA -
testcase_07 AC 64 ms
68,792 KB
testcase_08 AC 62 ms
68,244 KB
testcase_09 AC 65 ms
68,784 KB
testcase_10 AC 60 ms
66,908 KB
testcase_11 AC 467 ms
88,032 KB
testcase_12 AC 389 ms
86,192 KB
testcase_13 AC 421 ms
87,848 KB
testcase_14 AC 458 ms
88,172 KB
testcase_15 AC 323 ms
89,368 KB
testcase_16 AC 404 ms
91,372 KB
testcase_17 AC 418 ms
91,348 KB
testcase_18 AC 423 ms
91,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=list(map(int,input().split()))

B=317
st1=[0]*B*B
st2=[0]*B

for i in range(n-1):
  st1[i]=a[i+1]-a[i]
for i in range(B):
  st2[i]=B-st1[i*B:i*B+B].count(0)

for _ in range(q):
  t,*que,=map(int,input().split())
  if t==1:
    l,r,x=que
    l-=1
    r-=1
    if l-1>=0:
      st1[l-1]+=x
      y=(l-1)//B
      st2[y]=B-st1[y*B:y*B+B].count(0)
    st1[r]-=x
    y=r//B
    st2[y]=B-st1[y*B:y*B+B].count(0)
  if t==2:
    l,r=que
    l-=1
    r-=1
    r-=1
    a=0
    yl=l//B
    yr=r//B
    if yl==yr:
      for i in range(l,r+1):
        a+=st1[i]!=0
    else:
      for i in range(l,yl*B+B):
        a+=st1[i]!=0
      for i in range(yr*B,r+1):
        a+=st1[i]!=0
      for i in range(yl+1,yr):
        a+=st2[i]
    print(a+1)
0