結果

問題 No.2170 Left Addition Machine
ユーザー trineutrontrineutron
提出日時 2022-12-22 22:13:32
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 1,593 bytes
コンパイル時間 12,845 ms
コンパイル使用メモリ 400,684 KB
実行使用メモリ 27,328 KB
最終ジャッジ日時 2024-11-18 06:28:43
合計ジャッジ時間 36,837 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 0 ms
6,816 KB
testcase_02 AC 0 ms
6,816 KB
testcase_03 AC 260 ms
23,424 KB
testcase_04 AC 134 ms
8,448 KB
testcase_05 AC 179 ms
14,336 KB
testcase_06 AC 161 ms
15,744 KB
testcase_07 AC 249 ms
20,096 KB
testcase_08 AC 21 ms
7,168 KB
testcase_09 AC 230 ms
14,720 KB
testcase_10 AC 36 ms
6,820 KB
testcase_11 AC 139 ms
12,672 KB
testcase_12 AC 294 ms
27,328 KB
testcase_13 AC 300 ms
25,964 KB
testcase_14 AC 301 ms
25,476 KB
testcase_15 AC 278 ms
26,020 KB
testcase_16 AC 294 ms
25,804 KB
testcase_17 AC 303 ms
25,636 KB
testcase_18 AC 296 ms
25,292 KB
testcase_19 AC 292 ms
25,172 KB
testcase_20 AC 296 ms
26,228 KB
testcase_21 AC 264 ms
14,172 KB
testcase_22 AC 237 ms
13,092 KB
testcase_23 AC 238 ms
12,796 KB
testcase_24 AC 248 ms
13,356 KB
testcase_25 AC 248 ms
13,932 KB
testcase_26 AC 248 ms
13,480 KB
testcase_27 AC 241 ms
13,268 KB
testcase_28 AC 240 ms
12,796 KB
testcase_29 AC 253 ms
12,824 KB
testcase_30 AC 290 ms
26,368 KB
testcase_31 AC 295 ms
25,620 KB
testcase_32 AC 309 ms
25,180 KB
testcase_33 AC 291 ms
25,900 KB
testcase_34 AC 297 ms
26,408 KB
testcase_35 AC 308 ms
26,268 KB
testcase_36 AC 297 ms
25,520 KB
testcase_37 AC 302 ms
26,548 KB
testcase_38 AC 307 ms
25,572 KB
testcase_39 AC 252 ms
14,420 KB
testcase_40 AC 248 ms
12,920 KB
testcase_41 AC 247 ms
14,232 KB
testcase_42 AC 249 ms
13,516 KB
testcase_43 AC 247 ms
13,736 KB
testcase_44 AC 257 ms
14,260 KB
testcase_45 AC 246 ms
14,240 KB
testcase_46 AC 241 ms
13,568 KB
testcase_47 AC 256 ms
13,548 KB
testcase_48 AC 323 ms
25,828 KB
testcase_49 AC 299 ms
25,436 KB
testcase_50 AC 301 ms
27,020 KB
testcase_51 AC 283 ms
25,620 KB
testcase_52 AC 296 ms
25,224 KB
testcase_53 AC 288 ms
25,596 KB
testcase_54 AC 294 ms
25,428 KB
testcase_55 AC 302 ms
25,652 KB
testcase_56 AC 319 ms
26,388 KB
testcase_57 AC 302 ms
25,288 KB
testcase_58 AC 290 ms
26,160 KB
testcase_59 AC 283 ms
26,356 KB
testcase_60 AC 298 ms
25,520 KB
testcase_61 AC 295 ms
26,232 KB
testcase_62 AC 294 ms
26,564 KB
testcase_63 AC 297 ms
25,484 KB
testcase_64 AC 294 ms
25,864 KB
testcase_65 AC 300 ms
26,964 KB
testcase_66 AC 95 ms
6,820 KB
testcase_67 AC 278 ms
23,772 KB
testcase_68 AC 294 ms
26,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io;

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

fn main() {
    let mut s = String::new();
    io::stdin().read_line(&mut s).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 s = String::new();
    io::stdin().read_line(&mut s).unwrap();
    let v: Vec<_> = s.split_whitespace().collect();
    let mut a: Vec<i64> = vec![0; n];
    for i in 0..n {
        a[i] = v[i].trim().parse().unwrap();
    }
    let mut l: Vec<usize> = vec![0; q];
    let mut r: Vec<usize> = vec![0; q];
    let s = io::read_to_string(io::stdin()).unwrap();
    let v: Vec<_> = s.split_whitespace().collect();
    for i in 0..q {
        l[i] = v[2 * i].trim().parse().unwrap();
        r[i] = v[2 * i + 1].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;
    }

    for i in 0..q {
        l[i] -= 1;
        r[i] -= 1;
        l[i] = l[i].max(last[r[i]]);
        println!(
            "{}",
            ((a_sum[r[i] + 1] - a_sum[l[i] + 1] + MOD) * pow_half[l[i] + 1] + a[l[i]]) % MOD
        );
    }
}
0