結果

問題 No.2170 Left Addition Machine
ユーザー trineutrontrineutron
提出日時 2022-12-22 22:34:57
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,467 bytes
コンパイル時間 12,777 ms
コンパイル使用メモリ 389,592 KB
実行使用メモリ 26,980 KB
最終ジャッジ日時 2024-11-18 06:29:51
合計ジャッジ時間 24,981 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 155 ms
23,400 KB
testcase_04 AC 22 ms
8,448 KB
testcase_05 AC 61 ms
14,324 KB
testcase_06 AC 92 ms
15,872 KB
testcase_07 AC 84 ms
20,152 KB
testcase_08 AC 14 ms
7,040 KB
testcase_09 AC 46 ms
15,100 KB
testcase_10 AC 8 ms
6,816 KB
testcase_11 AC 34 ms
12,672 KB
testcase_12 AC 89 ms
25,164 KB
testcase_13 AC 78 ms
25,272 KB
testcase_14 AC 81 ms
26,300 KB
testcase_15 AC 80 ms
25,204 KB
testcase_16 AC 81 ms
25,308 KB
testcase_17 AC 82 ms
25,224 KB
testcase_18 AC 82 ms
25,164 KB
testcase_19 AC 77 ms
25,216 KB
testcase_20 AC 79 ms
25,152 KB
testcase_21 AC 32 ms
13,048 KB
testcase_22 AC 32 ms
14,504 KB
testcase_23 AC 32 ms
14,108 KB
testcase_24 AC 31 ms
13,376 KB
testcase_25 AC 33 ms
13,716 KB
testcase_26 AC 31 ms
12,940 KB
testcase_27 AC 33 ms
13,168 KB
testcase_28 AC 32 ms
13,592 KB
testcase_29 AC 33 ms
14,312 KB
testcase_30 AC 80 ms
25,224 KB
testcase_31 AC 82 ms
26,248 KB
testcase_32 AC 84 ms
25,156 KB
testcase_33 AC 87 ms
26,516 KB
testcase_34 AC 83 ms
26,164 KB
testcase_35 AC 83 ms
25,164 KB
testcase_36 AC 80 ms
25,336 KB
testcase_37 AC 83 ms
25,164 KB
testcase_38 AC 81 ms
26,872 KB
testcase_39 AC 31 ms
13,296 KB
testcase_40 AC 30 ms
13,152 KB
testcase_41 AC 31 ms
13,412 KB
testcase_42 AC 30 ms
12,896 KB
testcase_43 AC 31 ms
12,792 KB
testcase_44 AC 31 ms
13,560 KB
testcase_45 AC 30 ms
13,580 KB
testcase_46 AC 30 ms
13,688 KB
testcase_47 AC 30 ms
12,848 KB
testcase_48 AC 70 ms
26,980 KB
testcase_49 AC 67 ms
26,896 KB
testcase_50 AC 66 ms
26,284 KB
testcase_51 AC 68 ms
26,940 KB
testcase_52 AC 69 ms
25,152 KB
testcase_53 AC 67 ms
26,344 KB
testcase_54 AC 70 ms
26,160 KB
testcase_55 AC 69 ms
26,444 KB
testcase_56 AC 85 ms
25,364 KB
testcase_57 AC 72 ms
25,296 KB
testcase_58 AC 75 ms
25,376 KB
testcase_59 AC 73 ms
25,348 KB
testcase_60 AC 73 ms
26,352 KB
testcase_61 AC 74 ms
25,172 KB
testcase_62 AC 70 ms
26,404 KB
testcase_63 AC 73 ms
26,368 KB
testcase_64 AC 72 ms
26,416 KB
testcase_65 AC 69 ms
25,176 KB
testcase_66 AC 10 ms
6,820 KB
testcase_67 AC 59 ms
25,216 KB
testcase_68 AC 69 ms
25,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::{fs, io, io::Write};

const MOD: i64 = 998244353;
const HALF: i64 = (MOD + 1) / 2;

fn main() {
    let s = fs::read_to_string("/dev/stdin").unwrap();
    let v: Vec<_> = s.split_whitespace().collect();
    let n: usize = v[0].trim().parse().unwrap();
    let q: usize = v[1].trim().parse().unwrap();
    let mut a: Vec<i64> = vec![0; n];
    for i in 0..n {
        a[i] = v[i + 2].trim().parse().unwrap();
    }
    let mut l: Vec<usize> = vec![0; q];
    let mut r: Vec<usize> = vec![0; q];
    for i in 0..q {
        l[i] = v[2 * i + n + 2].trim().parse().unwrap();
        r[i] = v[2 * i + n + 3].trim().parse().unwrap();
    }

    let mut last = vec![0; n];
    for i in 1..n {
        if a[i] > a[i - 1] {
            last[i] = last[i - 1];
        } else {
            last[i] = i;
        }
    }

    let mut a_sum = vec![0; n + 1];
    let mut pow_half = vec![1; n + 1];
    let mut mul: i64 = 1;
    for i in 0..n {
        a_sum[i + 1] = (a_sum[i] + mul * a[i]) % MOD;
        mul += mul;
        if mul >= MOD {
            mul -= MOD;
        }
        pow_half[i + 1] = pow_half[i] * HALF % MOD;
    }

    let mut out = io::BufWriter::new(io::stdout().lock());
    for i in 0..q {
        l[i] -= 1;
        r[i] -= 1;
        l[i] = l[i].max(last[r[i]]);
        writeln!(
            out,
            "{}",
            ((a_sum[r[i] + 1] - a_sum[l[i] + 1] + MOD) * pow_half[l[i] + 1] + a[l[i]]) % MOD
        )
        .unwrap();
    }
}
0