結果
問題 | No.2219 Re:010 |
ユーザー | houren |
提出日時 | 2023-02-17 21:57:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,002 bytes |
コンパイル時間 | 1,593 ms |
コンパイル使用メモリ | 170,628 KB |
実行使用メモリ | 17,664 KB |
最終ジャッジ日時 | 2024-07-19 13:09:29 |
合計ジャッジ時間 | 2,729 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 23 ms
17,536 KB |
testcase_19 | AC | 22 ms
17,536 KB |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using P = pair<ll,ll>; #define fix(x) fixed << setprecision(x) #define asc(x) x, vector<x>, greater<x> #define rep(i, n) for(ll i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;} template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;} constexpr ll INFLL = (1LL << 62), MOD = 998244353; constexpr int INF = (1 << 30); int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); string s; cin >> s; int n = s.size(); vector<vector<ll>> dp(n+1,vector<ll>(4,0)); dp[0][0] = 1; rep(i,n){ if(s[i]!='1'){ rep(j,4) dp[i+1][j] += dp[i][j]; dp[i+1][1] += dp[i][0]; dp[i+1][3] += dp[i][2]; } if(s[i]!='0'){ rep(j,4) dp[i+1][j] += dp[i][j]; dp[i+1][2] += dp[i][1]; } } cout << dp[n][3] << '\n'; return 0; }