結果

問題 No.1694 ZerOne
ユーザー phsplsphspls
提出日時 2022-10-19 23:20:45
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 13,880 ms
コンパイル使用メモリ 391,076 KB
実行使用メモリ 55,168 KB
最終ジャッジ日時 2024-06-29 23:23:46
合計ジャッジ時間 14,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 9 ms
9,088 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 9 ms
10,240 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 10 ms
10,624 KB
testcase_15 AC 1 ms
5,376 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 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 55 ms
55,168 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 53 ms
53,120 KB
testcase_24 AC 15 ms
15,616 KB
testcase_25 AC 13 ms
15,104 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 40 ms
42,496 KB
testcase_28 AC 9 ms
9,856 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 6 ms
9,088 KB
testcase_31 AC 10 ms
11,904 KB
testcase_32 AC 13 ms
16,256 KB
testcase_33 AC 13 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    let s = s.trim().chars().collect::<Vec<_>>();

    let n = s.len();
    let score = s.iter().enumerate().filter(|&(_, &c)| c == '1').map(|(i, _)| i+1).sum::<usize>();
    let one_cnt = s.iter().filter(|&&c| c == '1').count();
    let mut dp = vec![vec![vec![0usize; score+1]; one_cnt+1]; n+1];
    dp[0][0][0] = 1;
    for i in 0..n {
        for j in 0..=one_cnt {
            for k in 0..=score {
                if dp[i][j][k] == 0 { continue; }
                dp[i+1][j][k] += dp[i][j][k];
                if j+1 <= one_cnt && k+i+1 <= score {
                    dp[i+1][j+1][k+i+1] += dp[i][j][k];
                }
            }
        }
    }
    println!("{}", dp[n][one_cnt][score]);
}
0