結果

問題 No.2561 みんな大好きmod 998
ユーザー atcoder8atcoder8
提出日時 2023-12-02 18:52:53
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 65 ms / 4,000 ms
コード長 926 bytes
コンパイル時間 13,881 ms
コンパイル使用メモリ 377,508 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-09-26 21:27:39
合計ジャッジ時間 13,912 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 5 ms
6,016 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 64 ms
76,768 KB
testcase_04 AC 65 ms
76,672 KB
testcase_05 AC 64 ms
76,800 KB
testcase_06 AC 61 ms
76,768 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 12 ms
13,440 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 62 ms
76,928 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 45 ms
56,704 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 15 ms
17,280 KB
testcase_27 AC 62 ms
76,800 KB
testcase_28 AC 19 ms
22,016 KB
testcase_29 AC 6 ms
8,064 KB
testcase_30 AC 16 ms
21,632 KB
testcase_31 AC 32 ms
41,472 KB
testcase_32 AC 9 ms
9,728 KB
testcase_33 AC 6 ms
8,064 KB
testcase_34 AC 62 ms
76,800 KB
testcase_35 AC 7 ms
6,656 KB
testcase_36 AC 6 ms
6,784 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 12 ms
13,440 KB
testcase_39 AC 18 ms
21,888 KB
testcase_40 AC 16 ms
21,888 KB
testcase_41 AC 12 ms
13,312 KB
testcase_42 AC 18 ms
22,016 KB
testcase_43 AC 4 ms
5,376 KB
testcase_44 AC 9 ms
10,240 KB
testcase_45 AC 44 ms
56,704 KB
testcase_46 AC 9 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let (_n, k) = {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        let mut iter = line.split_whitespace();
        (
            iter.next().unwrap().parse::<usize>().unwrap(),
            iter.next().unwrap().parse::<usize>().unwrap(),
        )
    };
    let aa: Vec<_> = {
        let mut line = String::new();
        std::io::stdin().read_line(&mut line).unwrap();
        line.split_whitespace()
            .map(|x| x.parse::<usize>().unwrap())
            .collect()
    };

    let mut dp = vec![(0, 0)];
    for &a in &aa {
        for i in 0..dp.len() {
            let (s, cnt) = dp[i];

            if cnt < k {
                dp.push((s + a, cnt + 1));
            }
        }
    }

    let ans = dp
        .iter()
        .filter(|&&(s, cnt)| cnt == k && s % 998244353 <= s % 998)
        .count()
        % 998;
    println!("{}", ans);
}
0