結果

問題 No.2956 Substitute with Average
ユーザー 37kt37kt
提出日時 2024-11-20 11:46:16
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 192 ms / 3,000 ms
コード長 947 bytes
コンパイル時間 17,675 ms
コンパイル使用メモリ 383,672 KB
実行使用メモリ 29,408 KB
最終ジャッジ日時 2024-11-20 11:46:38
合計ジャッジ時間 16,506 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,816 KB
testcase_01 AC 6 ms
6,816 KB
testcase_02 AC 5 ms
6,824 KB
testcase_03 AC 5 ms
6,820 KB
testcase_04 AC 6 ms
6,820 KB
testcase_05 AC 6 ms
6,816 KB
testcase_06 AC 5 ms
6,820 KB
testcase_07 AC 5 ms
6,820 KB
testcase_08 AC 5 ms
6,820 KB
testcase_09 AC 6 ms
6,816 KB
testcase_10 AC 180 ms
23,940 KB
testcase_11 AC 175 ms
25,588 KB
testcase_12 AC 192 ms
25,724 KB
testcase_13 AC 174 ms
25,608 KB
testcase_14 AC 173 ms
25,528 KB
testcase_15 AC 181 ms
25,752 KB
testcase_16 AC 180 ms
23,832 KB
testcase_17 AC 181 ms
23,880 KB
testcase_18 AC 64 ms
26,092 KB
testcase_19 AC 72 ms
19,732 KB
testcase_20 AC 61 ms
22,156 KB
testcase_21 AC 68 ms
18,256 KB
testcase_22 AC 74 ms
28,488 KB
testcase_23 AC 77 ms
26,344 KB
testcase_24 AC 87 ms
29,256 KB
testcase_25 AC 88 ms
29,404 KB
testcase_26 AC 83 ms
27,432 KB
testcase_27 AC 84 ms
29,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use proconio::{
    input,
    marker::{Bytes, Chars, Usize1},
};

const C: i64 = 100_000 * 30 + 10;

fn main() {
    input! {
        n: usize,
        a: [i64; n],
    }
    let mut res = n * (n + 1) / 2;
    for x in 1..=30 {
        let mut b = vec![0; n + 1];
        for i in 0..n {
            b[i + 1] = b[i] + (a[i] - x);
        }
        let mut cnt1 = vec![0; (C * 2) as usize];
        let mut cnt2 = vec![0; (C * 2) as usize];
        for i in 0..=n {
            if i > 0 {
                if a[i - 1] == x {
                    res -= cnt1[(b[i] + C) as usize];
                }
                res -= cnt2[(b[i] + C) as usize];
            }
            if i < n {
                if a[i] == x {
                    cnt2[(b[i] + C) as usize] += 1;
                } else {
                    cnt1[(b[i] + C) as usize] += 1;
                }
            }
        }
    }
    println!("{}", res + 1);
}
0