結果

問題 No.2170 Left Addition Machine
ユーザー trineutrontrineutron
提出日時 2022-12-22 22:27:01
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 1,356 bytes
コンパイル時間 12,808 ms
コンパイル使用メモリ 395,844 KB
実行使用メモリ 27,092 KB
最終ジャッジ日時 2024-11-18 06:32:33
合計ジャッジ時間 40,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 321 ms
23,468 KB
testcase_04 AC 148 ms
8,448 KB
testcase_05 AC 209 ms
16,320 KB
testcase_06 AC 193 ms
15,744 KB
testcase_07 AC 304 ms
20,088 KB
testcase_08 AC 24 ms
7,040 KB
testcase_09 AC 269 ms
15,488 KB
testcase_10 AC 40 ms
6,816 KB
testcase_11 AC 139 ms
12,672 KB
testcase_12 AC 343 ms
26,428 KB
testcase_13 AC 351 ms
26,096 KB
testcase_14 AC 352 ms
27,060 KB
testcase_15 AC 348 ms
25,156 KB
testcase_16 AC 339 ms
26,636 KB
testcase_17 AC 349 ms
25,336 KB
testcase_18 AC 349 ms
26,636 KB
testcase_19 AC 340 ms
25,268 KB
testcase_20 AC 351 ms
27,020 KB
testcase_21 AC 269 ms
13,552 KB
testcase_22 AC 276 ms
14,440 KB
testcase_23 AC 271 ms
12,920 KB
testcase_24 AC 270 ms
13,376 KB
testcase_25 AC 276 ms
13,792 KB
testcase_26 AC 267 ms
13,552 KB
testcase_27 AC 270 ms
14,112 KB
testcase_28 AC 273 ms
14,424 KB
testcase_29 AC 275 ms
12,924 KB
testcase_30 AC 350 ms
25,148 KB
testcase_31 AC 343 ms
26,260 KB
testcase_32 AC 352 ms
25,128 KB
testcase_33 AC 342 ms
25,156 KB
testcase_34 AC 354 ms
25,332 KB
testcase_35 AC 341 ms
26,252 KB
testcase_36 AC 346 ms
25,340 KB
testcase_37 AC 346 ms
25,156 KB
testcase_38 AC 345 ms
25,164 KB
testcase_39 AC 271 ms
13,804 KB
testcase_40 AC 273 ms
13,324 KB
testcase_41 AC 269 ms
14,568 KB
testcase_42 AC 266 ms
14,172 KB
testcase_43 AC 267 ms
14,388 KB
testcase_44 AC 273 ms
13,912 KB
testcase_45 AC 272 ms
14,488 KB
testcase_46 AC 277 ms
13,888 KB
testcase_47 AC 271 ms
13,068 KB
testcase_48 AC 349 ms
25,128 KB
testcase_49 AC 340 ms
25,140 KB
testcase_50 AC 318 ms
26,488 KB
testcase_51 AC 327 ms
26,624 KB
testcase_52 AC 328 ms
27,068 KB
testcase_53 AC 326 ms
26,444 KB
testcase_54 AC 344 ms
25,372 KB
testcase_55 AC 348 ms
25,232 KB
testcase_56 AC 341 ms
26,376 KB
testcase_57 AC 328 ms
26,684 KB
testcase_58 AC 330 ms
25,192 KB
testcase_59 AC 328 ms
25,212 KB
testcase_60 AC 324 ms
27,092 KB
testcase_61 AC 330 ms
25,236 KB
testcase_62 AC 330 ms
26,516 KB
testcase_63 AC 327 ms
25,208 KB
testcase_64 AC 327 ms
25,140 KB
testcase_65 AC 327 ms
26,460 KB
testcase_66 AC 101 ms
6,816 KB
testcase_67 AC 315 ms
23,620 KB
testcase_68 AC 319 ms
26,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::fs;

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;
    }

    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