結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-18 22:43:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,039 ms / 6,000 ms
コード長 732 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 243,080 KB
最終ジャッジ日時 2024-11-15 18:47:02
合計ジャッジ時間 32,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,808 KB
testcase_01 AC 40 ms
55,148 KB
testcase_02 AC 41 ms
55,424 KB
testcase_03 AC 41 ms
55,808 KB
testcase_04 AC 42 ms
55,808 KB
testcase_05 AC 43 ms
55,424 KB
testcase_06 AC 41 ms
55,496 KB
testcase_07 AC 46 ms
61,184 KB
testcase_08 AC 76 ms
74,112 KB
testcase_09 AC 66 ms
67,968 KB
testcase_10 AC 62 ms
65,536 KB
testcase_11 AC 1,197 ms
186,096 KB
testcase_12 AC 2,825 ms
180,312 KB
testcase_13 AC 3,401 ms
117,760 KB
testcase_14 AC 1,280 ms
216,220 KB
testcase_15 AC 606 ms
197,720 KB
testcase_16 AC 3,118 ms
101,760 KB
testcase_17 AC 570 ms
117,488 KB
testcase_18 AC 2,155 ms
125,772 KB
testcase_19 AC 3,899 ms
133,296 KB
testcase_20 AC 646 ms
173,032 KB
testcase_21 AC 1,103 ms
242,956 KB
testcase_22 AC 1,117 ms
243,080 KB
testcase_23 AC 1,475 ms
109,056 KB
testcase_24 AC 39 ms
55,040 KB
testcase_25 AC 39 ms
55,296 KB
testcase_26 AC 4,039 ms
199,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q,L0=map(int,input().split())
A=list(map(int,input().split()))
B=448
st11=[0]*B*B
st12=[0]*B
st21=[0]*B*B
st22=[0]*B
for l in A:
  st11[l]+=1
  st12[l//B]+=1
  st21[l]+=l
  st22[l//B]+=l
q2f=0
for _ in range(Q):
  t,*p,=list(map(int,input().split()))
  if t==1:
    l=p[0]
    st11[l]+=1
    st12[l//B]+=1
    st21[l]+=l
    st22[l//B]+=l
  if t==2:
    q2f=1
    l=p[0]
    r=p[1]
    yl=l//B
    yr=r//B
    a1=0
    a2=0
    if yl==yr:
      a1+=sum(st11[l:r+1])
      a2+=sum(st21[l:r+1])
    else:
      a1+=sum(st11[l:yl*B+B])
      a1+=sum(st12[yl+1:yr])
      a1+=sum(st11[yr*B:r+1])
      a2+=sum(st21[l:yl*B+B])
      a2+=sum(st22[yl+1:yr])
      a2+=sum(st21[yr*B:r+1])
    print(a1,a2)
if q2f==0:
  print("Not Found!")
0