結果

問題 No.2772 Appearing Even Times
ユーザー koba-e964koba-e964
提出日時 2024-06-21 10:18:52
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 401 ms / 4,000 ms
コード長 979 bytes
コンパイル時間 14,389 ms
コンパイル使用メモリ 405,340 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-21 10:19:15
合計ジャッジ時間 19,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 220 ms
6,940 KB
testcase_09 AC 401 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 310 ms
6,944 KB
testcase_13 AC 308 ms
6,944 KB
testcase_14 AC 308 ms
6,940 KB
testcase_15 AC 309 ms
6,940 KB
testcase_16 AC 311 ms
6,944 KB
testcase_17 AC 308 ms
6,944 KB
testcase_18 AC 336 ms
6,940 KB
testcase_19 AC 308 ms
6,944 KB
testcase_20 AC 302 ms
6,940 KB
testcase_21 AC 306 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn getline() -> String {
    let mut ret = String::new();
    std::io::stdin().read_line(&mut ret).ok().unwrap();
    ret
}

const MOD: i64 = 998_244_353;

fn main() {
    let s: Vec<_> = getline().trim().bytes().map(|b| (b - b'0') as usize).collect();
    let n = s.len();
    let mut dp = vec![[0; 2]; 1 << 10];
    for i in 0..n {
        let mut ep = vec![[0; 2]; 1 << 10];
        // start
        for d in 1..if i == 0 { s[0] + 1 } else { 10 } {
            ep[1 << d][if i == 0 && d == s[0] { 1 } else { 0 }] += 1;
        }
        // continue
        for bits in 0..1 << 10 {
            for eq in 0..2 {
                for d in 0..if eq == 1 { s[i] + 1 } else { 10 } {
                    let neq = if eq == 1 && d == s[i] { 1 } else { 0 };
                    ep[bits ^ 1 << d][neq] += dp[bits][eq];
                    ep[bits ^ 1 << d][neq] %= MOD;
                }
            }
        }
        dp = ep;
    }
    println!("{}", (dp[0][0] + dp[0][1]) % MOD);
}
0