結果

問題 No.1694 ZerOne
ユーザー tko919tko919
提出日時 2021-10-02 01:40:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 202,564 KB
実行使用メモリ 121,984 KB
最終ジャッジ日時 2024-07-19 19:29:21
合計ジャッジ時間 4,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 42 ms
68,352 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 10 ms
13,824 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 6 ms
9,472 KB
testcase_08 AC 12 ms
17,664 KB
testcase_09 AC 42 ms
63,872 KB
testcase_10 AC 7 ms
10,240 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 17 ms
22,656 KB
testcase_14 AC 44 ms
64,000 KB
testcase_15 AC 10 ms
14,976 KB
testcase_16 AC 8 ms
11,776 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 98 ms
121,856 KB
testcase_21 AC 98 ms
121,856 KB
testcase_22 AC 73 ms
114,560 KB
testcase_23 AC 73 ms
121,856 KB
testcase_24 AC 72 ms
121,856 KB
testcase_25 AC 72 ms
121,984 KB
testcase_26 AC 60 ms
107,776 KB
testcase_27 AC 58 ms
101,248 KB
testcase_28 AC 39 ms
51,584 KB
testcase_29 AC 37 ms
59,776 KB
testcase_30 AC 46 ms
73,088 KB
testcase_31 AC 61 ms
101,248 KB
testcase_32 AC 53 ms
89,216 KB
testcase_33 AC 80 ms
101,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
using ll=long long int;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}

ll dp[65][65][65*65];

int main(){
   string s;
   cin>>s;
   int n=s.size();
   int cnt=0,sum=0;
   rep(i,0,n)if(s[i]=='1'){
      cnt++;
      sum+=i;
   }
   dp[0][0][0]=1;
   rep(i,0,n)rep(j,0,n)rep(s,0,n*n){
      dp[i+1][j][s]+=dp[i][j][s];
      dp[i+1][j+1][s+i]+=dp[i][j][s];
   }
   cout<<dp[n][cnt][sum]<<'\n';
   return 0;
}
0