結果

問題 No.1441 MErGe
ユーザー tentententen
提出日時 2021-03-30 12:05:28
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 895 bytes
コンパイル時間 3,113 ms
コンパイル使用メモリ 85,864 KB
実行使用メモリ 155,016 KB
最終ジャッジ日時 2024-11-30 09:16:20
合計ジャッジ時間 48,422 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
45,464 KB
testcase_01 AC 138 ms
108,532 KB
testcase_02 AC 134 ms
46,740 KB
testcase_03 AC 254 ms
113,468 KB
testcase_04 AC 259 ms
51,148 KB
testcase_05 AC 364 ms
114,164 KB
testcase_06 AC 373 ms
53,288 KB
testcase_07 AC 361 ms
112,404 KB
testcase_08 AC 970 ms
80,540 KB
testcase_09 AC 973 ms
149,684 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 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int q = sc.nextInt();
        long base = 0;
        ArrayList<Long> list = new ArrayList<>();
        list.add(base);
        for (int i = 0; i < n; i++) {
            base += sc.nextInt();
            list.add(base);
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int type = sc.nextInt();
            int left = sc.nextInt();
            int right = sc.nextInt();
            if (type == 1) {
                for (int j = left; j < right; j++) {
                    list.remove(left);
                }
            } else {
                sb.append(list.get(right) - list.get(left - 1)).append("\n");
            }
        }
        System.out.print(sb);
    }
}
0