結果

問題 No.260 世界のなんとか3
ユーザー kmjpkmjp
提出日時 2015-08-01 00:45:35
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 1,508 bytes
コンパイル時間 1,442 ms
コンパイル使用メモリ 161,936 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-07 18:08:16
合計ジャッジ時間 6,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
10,624 KB
testcase_01 AC 8 ms
10,880 KB
testcase_02 AC 8 ms
10,624 KB
testcase_03 AC 312 ms
10,880 KB
testcase_04 AC 312 ms
11,008 KB
testcase_05 AC 66 ms
11,008 KB
testcase_06 AC 47 ms
11,008 KB
testcase_07 AC 214 ms
11,008 KB
testcase_08 AC 151 ms
10,880 KB
testcase_09 AC 88 ms
11,008 KB
testcase_10 AC 241 ms
10,880 KB
testcase_11 AC 227 ms
11,008 KB
testcase_12 AC 140 ms
10,880 KB
testcase_13 AC 45 ms
11,136 KB
testcase_14 AC 205 ms
10,752 KB
testcase_15 AC 60 ms
11,008 KB
testcase_16 AC 180 ms
11,008 KB
testcase_17 AC 144 ms
11,008 KB
testcase_18 AC 140 ms
10,880 KB
testcase_19 AC 179 ms
11,008 KB
testcase_20 AC 131 ms
11,008 KB
testcase_21 AC 114 ms
10,880 KB
testcase_22 AC 208 ms
11,008 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 AC 159 ms
11,008 KB
testcase_25 AC 203 ms
11,136 KB
testcase_26 AC 119 ms
10,880 KB
testcase_27 AC 8 ms
10,880 KB
testcase_28 AC 314 ms
11,008 KB
testcase_29 AC 405 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 mo=1000000007;
ll dp[10101][2][2][3][8]; // digit, more, inc3, mod3, mod8

ll dodo(string V) {
	ZERO(dp);
	dp[0][0][0][0][0]=1;
	int d,more,i3,m3,m8,x;
	FOR(d,V.size()) {
		V[d]-='0';
		FOR(more,2) FOR(i3,2) FOR(m3,3) FOR(m8,8) FOR(x,10) {
			if(more==0 && x>V[d]) continue;
			(dp[d+1][more || (x<V[d])][i3 || (x==3)][(m3*10+x)%3][(m8*10+x)%8] += dp[d][more][i3][m3][m8])%=mo;
		}
	}
	ll ret=0;
	FOR(more,2) FOR(i3,2) FOR(m3,3) FOR(m8,8) {
		if((m3==0 || i3==1) && m8) ret += dp[V.size()][more][i3][m3][m8];
	}
	return ret%mo;
}

string decdec(string A) {
	reverse(A.begin(),A.end());
	FORR(r,A) {
		if(r!='0') {
			r--;
			break;
		}
		r='9';
	}
	if(A.back()=='0') A.resize(A.size()-1);
	reverse(A.begin(),A.end());
	return A;
}


void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>A>>B;
	A=decdec(A);
	cout<<(dodo(B)-dodo(A)+ mo)%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;
}
0