結果
問題 | No.260 世界のなんとか3 |
ユーザー | akusyounin2412 |
提出日時 | 2018-07-19 19:00:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,805 bytes |
コンパイル時間 | 1,264 ms |
コンパイル使用メモリ | 125,376 KB |
実行使用メモリ | 15,744 KB |
最終ジャッジ日時 | 2024-06-06 14:51:46 |
合計ジャッジ時間 | 6,841 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,064 KB |
testcase_01 | AC | 5 ms
8,192 KB |
testcase_02 | AC | 5 ms
8,192 KB |
testcase_03 | WA | - |
testcase_04 | AC | 323 ms
15,744 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 87 ms
11,392 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 142 ms
13,440 KB |
testcase_13 | WA | - |
testcase_14 | AC | 211 ms
14,720 KB |
testcase_15 | AC | 61 ms
9,728 KB |
testcase_16 | AC | 185 ms
13,312 KB |
testcase_17 | WA | - |
testcase_18 | AC | 142 ms
11,520 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 164 ms
14,080 KB |
testcase_25 | AC | 211 ms
15,744 KB |
testcase_26 | AC | 119 ms
15,744 KB |
testcase_27 | AC | 5 ms
8,064 KB |
testcase_28 | AC | 322 ms
15,744 KB |
testcase_29 | AC | 418 ms
15,616 KB |
ソースコード
# include <iostream> # include <algorithm> #include <array> # include <cassert> #include <cctype> #include <climits> #include <numeric> # include <vector> # include <string> # include <set> # include <map> # include <cmath> # include <iomanip> # include <functional> # include <tuple> # include <utility> # include <stack> # include <queue> # include <list> # include <bitset> # include <complex> # include <chrono> # include <random> # include <limits.h> # include <unordered_map> # include <unordered_set> # include <deque> # include <cstdio> # include <cstring> #include <stdio.h> #include<time.h> #include <stdlib.h> #include <cstdint> #include <cfenv> //#include <bits/stdc++.h> using namespace std; using LL = long long; using ULL = unsigned long long; long long MOD = 1000000000+7; constexpr long long INF = numeric_limits<LL>::max(); const double PI = acos(-1); #define fir first #define sec second #define thi third #define debug(x) cerr<<#x<<": "<<x<<'\n' typedef pair<LL, LL> Pll; typedef pair<LL, pair<LL, LL>> Ppll; typedef pair<LL, pair<LL, bitset<100001>>> Pbll; typedef pair<LL, pair<LL, vector<LL>>> Pvll; typedef pair<LL, LL> Vec2; struct Tll { LL first, second, third; }; typedef pair<LL, Tll> Ptll; #define rep(i,rept) for(LL i=0;i<rept;i++) #define Mfor(i,mf) for(LL i=mf-1;i>=0;i--) LL h, w, n, m, k, t, s, q, last, cnt, sum[2000000], ans, d[200000], a[2000000], b[2000000],rnd[200000]; string str[2],ss; bool f; char c; int di[4][2] = { { 0,1 },{ 1,0 },{ -1,0 } ,{ 0,-1 } }; struct Edge { LL to, cost; }; vector<LL>vec[100000],hashs[100000]; vector<Pll>v; map<string, LL>ma; set<LL>st; void YN(bool f) { if (f) cout << "YES" << endl; else cout << "NO" << endl; } void yn(bool f) { if (f) cout << "Yes" << endl; else cout << "No" << endl; } LL dp[20000][2][2][3][8]; LL func(string x) { rep(i, x.size()+1)rep(j, 2)rep(n, 2)rep(k, 3)rep(l, 8) { dp[i][j][n][k][l] = 0; } dp[0][0][0][0][0] = 1; rep(i, x.size()) { rep(j, 2) { int lim = (j == 1 ? 9 : x[i] - '0'); rep(m, 2) rep(l, 3) { rep(n, 8) {rep(k, lim + 1) { dp[i + 1][j || k < lim][m || k == 3][(l + k) % 3][(n + d[x.size() - i - 1] * k) % 8] += dp[i][j][m][l][n]; dp[i + 1][j || k < lim][m || k == 3][(l + k) % 3][(n + d[x.size() - i - 1] * k) % 8] %= MOD; } } } } } ans = 0; rep(i, 2)rep(j, 3)rep(k, 8)rep(l, 2) { if ((j == 0 || l == 1) && k != 0) ans += dp[x.size()][i][l][j][k]; ans %= MOD; } return ans; } int main() { cin >> str[0] >> str[1]; d[0] = 1; rep(i, str[1].size()) { d[i + 1] = (d[i] * 10) % 8; } rep(i, str[0].size()) { if (str[0][str[0].size() - 1 - i]=='0') { str[0][str[0].size() - 1 - i] += 9; } else { str[0][str[0].size() - 1 - i]--; break; } } cout << func(str[1]) - func(str[0]) << endl; return 0; }