結果

問題 No.1441 MErGe
ユーザー H20H20
提出日時 2021-03-26 22:10:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 548,020 KB
最終ジャッジ日時 2024-11-28 23:26:46
合計ジャッジ時間 35,627 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
60,312 KB
testcase_01 AC 32 ms
305,676 KB
testcase_02 AC 32 ms
57,616 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
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 WA -
testcase_19 MLE -
testcase_20 WA -
testcase_21 MLE -
testcase_22 WA -
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]+[sum(SA[l:r+1])]+SA[r+1:]
    if t==2:
        print(SA[r]-SA[l-1])
0