結果
問題 | No.220 世界のなんとか2 |
ユーザー | gabriel55_ |
提出日時 | 2023-01-15 16:18:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,931 bytes |
コンパイル時間 | 4,367 ms |
コンパイル使用メモリ | 268,780 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-08 19:07:49 |
合計ジャッジ時間 | 5,283 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,944 KB |
ソースコード
#if !__INCLUDE_LEVEL__ #include __FILE__ int main(void){ ll n; cin >> n; n++; vector dp(n+1, vector<vector<vector<ll>>>(2, vector<vector<ll>>(2, vector<ll>(3, 0)))); dp[0][0][0][0] = 1; rep(i,n) rep(j,2) rep(k,2) rep(l,3) { ll lim = j ? 9 : (!i ? 1 : 0); rep(d,lim+1) dp[i+1][j || d < lim][k || d == 3][(l+d)%3] += dp[i][j][k][l]; } ll ans = 0; rep(i,3) rep(j,2) ans += dp[n][j][1][i]; rep(j,2) ans += dp[n][j][0][0]; cout << ans-1 << '\n'; } /*--------------------------------------------------------------------------------------------------- ○______ || | || ● | || | || ̄ ̄ ̄ ̄ ̄ || 君が代は ∧__,,∧|| 千代に八千代に ( `・ω・|| さざれ石の巌となりて ヽ つ0 こけのむすまで し―-J ---------------------------------------------------------------------------------------------------*/ #else #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using ull = unsigned long long; using ldb = long double; using P = pair<ll, ll>; #define fi first #define se second #define m_99(i,a,b) for (ll i = a, i##_range = (b); i < i##_range; i++) #define rep(i,a) m_99(i,0,a) template <class T> bool chmin(T& a, const T& b) { return a > b ? a = b, true : false; } template <class T> bool chmax(T& a, const T& b) { return a < b ? a = b, true : false; } #ifdef LOCAL #include <debug_print.hpp> #define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__) #else #define debug(...) (static_cast<void>(0)) #endif struct initialise { initialise() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; }__INI__; const ll inf = 1LL << 60; const ll dx[4] = {-1, 1, 0, 0}, dy[4] = {0, 0, -1, 1}; #endif