結果
問題 | No.315 世界のなんとか3.5 |
ユーザー | kmjp |
提出日時 | 2015-12-08 00:23:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,084 bytes |
コンパイル時間 | 1,424 ms |
コンパイル使用メモリ | 162,796 KB |
実行使用メモリ | 29,312 KB |
最終ジャッジ日時 | 2024-09-14 18:39:48 |
合計ジャッジ時間 | 5,222 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
10,624 KB |
testcase_01 | AC | 6 ms
5,248 KB |
testcase_02 | AC | 13 ms
5,248 KB |
testcase_03 | AC | 7 ms
5,376 KB |
testcase_04 | AC | 8 ms
5,376 KB |
testcase_05 | AC | 7 ms
5,376 KB |
testcase_06 | AC | 8 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<to;x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- string A,B; ll P; ll mo=1000000007; ll p10[202020]; ll memo[202020][3][2]; ll dfs(string& S,int d,int m,int lead) { if(d>=S.size()) return (m==0); if(memo[d][m][lead]>=0) return memo[d][m][lead]; ll ret=0; int i; if(lead==1) { FOR(i,S[d]-'0') { if(i==3) ret+=p10[S.size()-1-d]; else ret += dfs(S,d+1,(m+i)%3,0); } ret += dfs(S,d+1,(m+S[d]-'0')%3,1); } else { FOR(i,10) { if(i==3) ret+=p10[S.size()-1-d]; else ret += dfs(S,d+1,(m+i)%3,0); } } return memo[d][m][lead]=ret; } string decdec(string A) { reverse(A.begin(),A.end()); FORR(r,A) { if(r--!='0') break; r='9'; } if(A.back()=='0') A.resize(A.size()-1); reverse(A.begin(),A.end()); return A; } int greed(int v,int p) { int ret=0; for(int i=1;i<=v;i++) { if(i%p==0) continue; int ok=(i%3==0); int j=i; while(j) { if(j%10==3) ok=1; j/=10; } ret+=ok; } return ret; } ll hoge(string S,ll P) { ll dp[2][3]={}; if(S.size()<=6) return greed(atol(S.c_str()),P); ll ret=0; int low=atol(S.substr(S.size()-4).c_str()); int i; S=S.substr(0,S.size()-4); MINUS(memo); FOR(i,3) dp[1][i]=dfs(S,0,i,1); S=decdec(S); MINUS(memo); FOR(i,3) dp[0][i]=dfs(S,0,i,1); FOR(i,10000) { if(i%P==0) continue; ret += dp[(i>=low)][i%3]; } return 0; } void solve() { int i,j,k,l,r,x,y; string s; p10[0]=1; FOR(i,202000) p10[i+1]=p10[i]*10%mo; cin>>A>>B>>P; A=decdec(A); cout<<(hoge(B,P)+mo-hoge(A,P))%mo<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }