結果

問題 No.1825 Except One
ユーザー phsplsphspls
提出日時 2022-10-26 23:21:11
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 102 ms / 3,000 ms
コード長 923 bytes
コンパイル時間 14,944 ms
コンパイル使用メモリ 400,844 KB
実行使用メモリ 103,552 KB
最終ジャッジ日時 2024-07-04 11:19:58
合計ジャッジ時間 14,526 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 56 ms
51,968 KB
testcase_04 AC 15 ms
15,616 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 52 ms
48,256 KB
testcase_08 AC 53 ms
50,176 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 34 ms
32,256 KB
testcase_11 AC 6 ms
7,040 KB
testcase_12 AC 19 ms
18,816 KB
testcase_13 AC 10 ms
9,984 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 7 ms
8,832 KB
testcase_25 AC 5 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 33 ms
33,792 KB
testcase_28 AC 87 ms
88,320 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 4 ms
6,940 KB
testcase_32 AC 58 ms
57,600 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 102 ms
103,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let mut a = String::new();
    std::io::stdin().read_line(&mut a).ok();
    let mut a: Vec<usize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();

    a.sort();
    let summary = a.iter().sum::<usize>();
    let mut dp = vec![vec![vec![0usize; summary+1]; n+1]; n+1];
    dp[0][0][0] = 1;
    let mut result = 0usize;
    for i in 0..n {
        for j in 0..=n {
            for k in 0..=summary {
                if dp[i][j][k] == 0 { continue; }
                dp[i+1][j][k] += dp[i][j][k];
                let nval = k+a[i];
                dp[i+1][j+1][nval] += dp[i][j][k];
                if j+1 >= 2 && nval%j == 0 && nval/j >= a[i] {
                    result += dp[i][j][k];
                }
            }
        }
    }
    println!("{}", result);
}
0