結果
問題 | No.220 世界のなんとか2 |
ユーザー | tsutaj |
提出日時 | 2017-07-14 09:13:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 922 bytes |
コンパイル時間 | 1,666 ms |
コンパイル使用メモリ | 169,444 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-07 20:36:24 |
合計ジャッジ時間 | 2,279 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 1 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,a,n) for(int i=a; i<n; i++) #define repq(i,a,n) for(int i=a; i<=n; i++) #define repr(i,a,n) for(int i=a; i>=n; i--) typedef long long int ll; typedef pair<int, int> pii; template<typename T> void chmax(T &a, T b) {a = max(a, b);} template<typename T> void chmin(T &a, T b) {a = min(a, b);} // digit, mod, has3, flag ll dp[25][3][2][2]; int main() { int n; cin >> n; string s(n, '0'); s = '1' + s; int m = s.length(); dp[0][0][0][0] = 1; rep(i,0,m) rep(j,0,3) rep(k,0,2) rep(l,0,2) { int lim = (l == 1 ? 9 : s[i] - '0'); rep(x,0,lim + 1) { int mo = (j + x) % 3; dp[i+1][mo][k || (x == 3)][l || x < lim] += dp[i][j][k][l]; } } ll ans = 0; rep(j,0,3) rep(k,0,2) rep(l,0,2) { if(j == 0 || k == 1) ans += dp[m][j][k][l]; } cout << ans - 1 << endl; return 0; }