結果

問題 No.1441 MErGe
ユーザー H20H20
提出日時 2021-03-26 22:19:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 283 bytes
コンパイル時間 997 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 545,360 KB
最終ジャッジ日時 2024-11-28 23:46:20
合計ジャッジ時間 37,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,216 KB
testcase_01 AC 39 ms
305,824 KB
testcase_02 AC 39 ms
57,344 KB
testcase_03 AC 55 ms
350,212 KB
testcase_04 AC 67 ms
80,768 KB
testcase_05 AC 114 ms
360,800 KB
testcase_06 AC 115 ms
82,304 KB
testcase_07 AC 118 ms
355,716 KB
testcase_08 AC 472 ms
206,192 KB
testcase_09 AC 447 ms
479,768 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 796 ms
264,828 KB
testcase_19 MLE -
testcase_20 AC 726 ms
264,640 KB
testcase_21 MLE -
testcase_22 AC 870 ms
264,756 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,Q=map(int,input().split())
A = list(map(int,input().split()))
SA = list(itertools.accumulate(A))+[0]
for i in range(Q):
    t,l,r=map(int,input().split())
    l-=1
    r-=1
    if t==1:
        SA = SA[:l]+[SA[r]]+SA[r+1:]
    if t==2:
        print(SA[r]-SA[l-1])
0