結果
問題 | No.315 世界のなんとか3.5 |
ユーザー | muriro4 |
提出日時 | 2018-12-14 22:23:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,253 bytes |
コンパイル時間 | 1,597 ms |
コンパイル使用メモリ | 164,536 KB |
実行使用メモリ | 154,112 KB |
最終ジャッジ日時 | 2024-09-25 05:23:02 |
合計ジャッジ時間 | 34,333 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
153,216 KB |
testcase_01 | AC | 117 ms
153,344 KB |
testcase_02 | AC | 120 ms
153,344 KB |
testcase_03 | AC | 116 ms
153,344 KB |
testcase_04 | AC | 116 ms
153,472 KB |
testcase_05 | AC | 117 ms
153,472 KB |
testcase_06 | AC | 118 ms
153,344 KB |
testcase_07 | AC | 120 ms
153,344 KB |
testcase_08 | AC | 116 ms
153,344 KB |
testcase_09 | AC | 116 ms
153,344 KB |
testcase_10 | AC | 117 ms
153,472 KB |
testcase_11 | AC | 116 ms
153,472 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for(int i = 0;i < n;i++) #define REPR(i, n) for(int i = n;i >= 0;i--) #define FOR(i, m, n) for(int i = m;i < n;i++) #define itrfor(itr,A) for(auto itr = A.begin(); itr !=A.end();itr++) typedef long long llong; char moji[26]={'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; char moji2[26]={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'}; char moji3[10]={'0','1','2','3','4','5','6','7','8','9'}; #define Sort(a) sort(a.begin(),a.end()); #define Reverse(a) reverse(a.begin(),a.end()); #define print(a) cout << a << endl; #define MOD llong(1e9 +7) #define MAX 200005 int main(){ llong ans[2]; string S[2]; string p; cin >> S[0] >> S[1] >> p; int p_keta = p.length(); REP(iiii,2){ string s; s = S[iiii]; int n = s.length(); int dp[MAX][2][2][3][8][2]; if(iiii == 1) REP(i,n+1) REP(j,2) REP(k,2) REP(ii,3) REP(jj,8) REP(kk,2) dp[i][j][k][ii][jj][kk] = 0; dp[0][0][0][0][0][0] = 1; FOR(i,1,n+1){ REP(iii,2){ if(iii == 1 and i < n + 1 - p_keta) continue; REP(j,2){ REP(ii,2){ REP(jj,3){ REP(kk,8){ int lim = j ? 9 : s[i-1] - '0'; REP(k,lim +1){ dp[i][j or k < lim][ii or k == 3][(jj + k) % 3][(kk * 10 + k)%8][(k == 0 and (iii or (n + 2 - p_keta == i and kk ==0))) or (p_keta == 1 and (10*kk+k)%8 == 0 and i == n)] += dp[i-1][j][ii][jj][kk][iii]%=MOD; } } } } } } } ans[iiii] = 0; REP(i,2){ if(iiii == 0 and i == 0) continue; REP(j,2) REP(k,3) REP(ii,8){ if(j== 0 and k != 0) continue; ans[iiii] += dp[n][i][j][k][ii][0]; ans[iiii] %=MOD; } } } cout << (MOD + ans[1] - ans[0]) % MOD << endl; }