結果

問題 No.1694 ZerOne
ユーザー chocoruskchocorusk
提出日時 2021-10-04 04:15:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 1,119 bytes
コンパイル時間 3,144 ms
コンパイル使用メモリ 189,672 KB
実行使用メモリ 61,384 KB
最終ジャッジ日時 2024-07-22 02:11:27
合計ジャッジ時間 4,382 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,672 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 4 ms
9,684 KB
testcase_03 AC 14 ms
52,688 KB
testcase_04 AC 4 ms
13,780 KB
testcase_05 AC 7 ms
32,336 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 7 ms
28,112 KB
testcase_08 AC 8 ms
36,304 KB
testcase_09 AC 12 ms
50,768 KB
testcase_10 AC 7 ms
28,256 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 4 ms
9,680 KB
testcase_13 AC 9 ms
38,340 KB
testcase_14 AC 13 ms
50,768 KB
testcase_15 AC 8 ms
32,208 KB
testcase_16 AC 7 ms
30,288 KB
testcase_17 AC 4 ms
13,776 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 16 ms
59,988 KB
testcase_21 AC 17 ms
60,744 KB
testcase_22 AC 16 ms
59,604 KB
testcase_23 AC 16 ms
59,732 KB
testcase_24 AC 16 ms
61,000 KB
testcase_25 AC 16 ms
61,384 KB
testcase_26 AC 14 ms
58,960 KB
testcase_27 AC 14 ms
58,828 KB
testcase_28 AC 10 ms
48,592 KB
testcase_29 AC 12 ms
50,640 KB
testcase_30 AC 13 ms
52,820 KB
testcase_31 AC 14 ms
58,828 KB
testcase_32 AC 13 ms
56,904 KB
testcase_33 AC 14 ms
58,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint998244353;
ll dp[61][61][2000];
int main()
{
    string s; cin>>s;
    int n=s.size();
    int c=0, d=0;
    for(int i=0; i<n; i++){
        if(s[i]=='1'){
            c++;
            d+=i+1;
        }
    }
    dp[0][0][0]=1;
    for(int i=0; i<n; i++){
        for(int j=0; j<=i; j++){
            for(int k=0; k<=i*(i+1)/2; k++){
                dp[i+1][j][k]+=dp[i][j][k];
                dp[i+1][j+1][k+i+1]+=dp[i][j][k];
            }
        }
    }
    cout<<dp[n][c][d]<<endl;
    return 0;
}
0