結果

問題 No.1705 Mode of long array
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-08 21:05:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 647 ms / 3,000 ms
コード長 450 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 95,212 KB
最終ジャッジ日時 2024-08-08 21:05:52
合計ジャッジ時間 25,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
63,000 KB
testcase_01 AC 43 ms
63,324 KB
testcase_02 AC 43 ms
64,456 KB
testcase_03 AC 101 ms
80,360 KB
testcase_04 AC 87 ms
80,328 KB
testcase_05 AC 110 ms
79,960 KB
testcase_06 AC 135 ms
80,804 KB
testcase_07 AC 166 ms
80,748 KB
testcase_08 AC 161 ms
81,004 KB
testcase_09 AC 157 ms
80,988 KB
testcase_10 AC 174 ms
80,788 KB
testcase_11 AC 152 ms
81,004 KB
testcase_12 AC 156 ms
81,044 KB
testcase_13 AC 341 ms
90,648 KB
testcase_14 AC 300 ms
85,208 KB
testcase_15 AC 370 ms
80,980 KB
testcase_16 AC 394 ms
81,848 KB
testcase_17 AC 312 ms
81,136 KB
testcase_18 AC 275 ms
81,044 KB
testcase_19 AC 416 ms
82,752 KB
testcase_20 AC 294 ms
82,012 KB
testcase_21 AC 296 ms
89,344 KB
testcase_22 AC 428 ms
94,392 KB
testcase_23 AC 495 ms
80,224 KB
testcase_24 AC 493 ms
80,076 KB
testcase_25 AC 501 ms
80,056 KB
testcase_26 AC 494 ms
80,148 KB
testcase_27 AC 518 ms
80,284 KB
testcase_28 AC 492 ms
80,208 KB
testcase_29 AC 495 ms
80,216 KB
testcase_30 AC 503 ms
80,352 KB
testcase_31 AC 495 ms
80,292 KB
testcase_32 AC 499 ms
80,220 KB
testcase_33 AC 612 ms
94,664 KB
testcase_34 AC 647 ms
95,120 KB
testcase_35 AC 615 ms
94,772 KB
testcase_36 AC 642 ms
94,760 KB
testcase_37 AC 600 ms
95,204 KB
testcase_38 AC 646 ms
94,808 KB
testcase_39 AC 625 ms
94,844 KB
testcase_40 AC 631 ms
95,012 KB
testcase_41 AC 623 ms
94,824 KB
testcase_42 AC 645 ms
94,568 KB
testcase_43 AC 430 ms
94,728 KB
testcase_44 AC 441 ms
94,704 KB
testcase_45 AC 472 ms
94,596 KB
testcase_46 AC 444 ms
94,640 KB
testcase_47 AC 471 ms
95,212 KB
testcase_48 AC 494 ms
94,836 KB
testcase_49 AC 434 ms
94,716 KB
testcase_50 AC 446 ms
94,840 KB
testcase_51 AC 433 ms
94,860 KB
testcase_52 AC 433 ms
94,800 KB
testcase_53 AC 467 ms
94,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
B=317
st1=[(0,i) for i in range(B*B)]
for i in range(m):
  st1[i]=(a[i],i)
st2=[max(st1[i*B:i*B+B]) for i in range(B)]
q=int(input())
for _ in range(q):
  t,x,y=map(int,input().split())
  x-=1
  if t==1:
    st1[x]=(st1[x][0]+y,x)
    i=x//B
    st2[i]=max(st1[i*B:i*B+B])
  if t==2:
    st1[x]=(st1[x][0]-y,x)
    i=x//B
    st2[i]=max(st1[i*B:i*B+B])
  if t==3:
    print(max(st2)[1]+1)
0