結果
問題 | No.260 世界のなんとか3 |
ユーザー | OUDON |
提出日時 | 2016-09-23 15:43:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,798 bytes |
コンパイル時間 | 1,752 ms |
コンパイル使用メモリ | 171,012 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-04-28 22:16:52 |
合計ジャッジ時間 | 4,428 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
11,008 KB |
testcase_01 | AC | 5 ms
10,908 KB |
testcase_02 | AC | 6 ms
10,940 KB |
testcase_03 | AC | 94 ms
11,120 KB |
testcase_04 | AC | 96 ms
11,008 KB |
testcase_05 | AC | 23 ms
10,840 KB |
testcase_06 | AC | 17 ms
10,960 KB |
testcase_07 | AC | 67 ms
11,008 KB |
testcase_08 | AC | 48 ms
11,008 KB |
testcase_09 | AC | 29 ms
11,008 KB |
testcase_10 | AC | 74 ms
10,948 KB |
testcase_11 | AC | 71 ms
10,900 KB |
testcase_12 | AC | 46 ms
10,992 KB |
testcase_13 | AC | 16 ms
10,932 KB |
testcase_14 | AC | 64 ms
11,008 KB |
testcase_15 | AC | 22 ms
10,948 KB |
testcase_16 | AC | 58 ms
11,136 KB |
testcase_17 | AC | 45 ms
11,008 KB |
testcase_18 | AC | 45 ms
10,984 KB |
testcase_19 | AC | 56 ms
11,136 KB |
testcase_20 | AC | 42 ms
11,008 KB |
testcase_21 | AC | 38 ms
11,008 KB |
testcase_22 | AC | 66 ms
10,820 KB |
testcase_23 | AC | 11 ms
11,008 KB |
testcase_24 | AC | 52 ms
10,972 KB |
testcase_25 | AC | 51 ms
11,008 KB |
testcase_26 | AC | 52 ms
11,008 KB |
testcase_27 | AC | 5 ms
11,008 KB |
testcase_28 | WA | - |
testcase_29 | AC | 97 ms
11,008 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define DUMP(x) cerr << #x << "=" << x << endl #define DUMP2(x, y) cerr<<"("<<#x<<", "<<#y<<") = ("<<x<<", "<<y<<")"<< endl #define BINARY(x) static_cast<bitset<16> >(x) #define rep(i,n) for(int i=0;i<(int)(n);i++) #define REP(i,m,n) for (int i=m;i<(int)(n);i++) #define in_range(x, y, w, h) (0<=(int)(x) && (int)(x)<(int)(w) && 0<=(int)(y) && (int)(y)<(int)(h)) #define ALL(a) (a).begin(),(a).end() typedef long long ll; const int INF = 1e9; typedef pair<int, int> PII; int dx[4]={0, -1, 1, 0}, dy[4]={-1, 0, 0, 1}; const int MOD = 1e9 + 7; ll dp[10001][2][2][3][8]; // dp[i桁目まで][i-1桁目まで一致しているか][3があるか][mod3][mod8] int calc(string N) { int L = N.size(); memset(dp, 0, sizeof(dp)); dp[0][1][0][0][0] = 1; rep(i, L) rep(same, 2) rep(exist, 2) rep(mod3, 3) rep(mod8, 8) { if (!dp[i][same][exist][mod3][mod8]) continue; rep(d, 10) { int nsame = 0; if (same && d > N[i] - '0') break; if (same && d == N[i] - '0') nsame = 1; dp[i+1][nsame][exist || d == 3][(mod3 * 10 + d) % 3][(mod8 * 10 + d) % 8] += dp[i][same][exist][mod3][mod8]; dp[i+1][nsame][exist || d == 3][(mod3 * 10 + d) % 3][(mod8 * 10 + d) % 8] %= MOD; } } ll res = 0; rep(same, 2) rep(exist, 2) rep(mod3, 3) rep(mod8, 8) { if ((exist || !mod3) && mod8) (res += dp[L][same][exist][mod3][mod8]) %= MOD; } return res - 1; } int main() { string A, B; cin >> A >> B; // A-- for (int i=A.size() - 1; i>=0; i--) { if (A[i] == '0') { A[i] = '9'; } else { A[i]--; break; } } cout << (calc(B) - calc(A) + MOD) % MOD << endl; }