結果

問題 No.315 世界のなんとか3.5
ユーザー koyumeishikoyumeishi
提出日時 2015-12-01 05:34:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 1,640 bytes
コンパイル時間 3,855 ms
コンパイル使用メモリ 77,588 KB
実行使用メモリ 56,988 KB
最終ジャッジ日時 2024-09-14 06:35:54
合計ジャッジ時間 17,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,248 KB
testcase_01 AC 134 ms
41,560 KB
testcase_02 AC 190 ms
42,112 KB
testcase_03 AC 127 ms
41,312 KB
testcase_04 AC 128 ms
41,096 KB
testcase_05 AC 159 ms
41,600 KB
testcase_06 AC 221 ms
41,928 KB
testcase_07 AC 156 ms
41,352 KB
testcase_08 AC 153 ms
41,280 KB
testcase_09 AC 124 ms
41,084 KB
testcase_10 AC 128 ms
41,124 KB
testcase_11 AC 129 ms
41,256 KB
testcase_12 AC 314 ms
42,452 KB
testcase_13 AC 307 ms
42,412 KB
testcase_14 AC 463 ms
43,216 KB
testcase_15 AC 465 ms
42,888 KB
testcase_16 AC 471 ms
43,668 KB
testcase_17 AC 473 ms
43,268 KB
testcase_18 AC 351 ms
42,644 KB
testcase_19 AC 352 ms
42,912 KB
testcase_20 AC 390 ms
43,132 KB
testcase_21 AC 391 ms
43,348 KB
testcase_22 AC 491 ms
43,548 KB
testcase_23 AC 510 ms
43,816 KB
testcase_24 AC 472 ms
42,788 KB
testcase_25 AC 510 ms
44,136 KB
testcase_26 AC 471 ms
43,592 KB
testcase_27 AC 455 ms
43,512 KB
testcase_28 AC 518 ms
43,652 KB
testcase_29 AC 635 ms
44,284 KB
testcase_30 AC 646 ms
56,708 KB
testcase_31 AC 607 ms
56,988 KB
testcase_32 AC 644 ms
56,988 KB
testcase_33 AC 456 ms
56,944 KB
testcase_34 AC 588 ms
56,752 KB
testcase_35 AC 699 ms
56,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	private long MOD = 1000000007;
	private long calc(char[] n, int p){
		long dp[][][];
		dp = new long[2][p][16];
		dp[0][0][0] = 1;
		int u = 0;
		int v = 1;
		int sz = n.length;
		for(int i=0; i<sz; i++){
			int k = n[i] - '0';
			for(int j=0; j<(i<sz-5?1:p); j++){
				for(int a=0;a<2;a++){
				for(int b=0;b<3;b++){
				for(int c=0;c<2;c++){
					int s = (a<<3)|(b<<1)|c;
					long val = dp[u][j][s];
					dp[u][j][s] = 0;
					for(int d=0;d<10;d++){
						if(a==0 && d>k) continue;
						int a_ = a | (d<k?1:0);
						int b_ = (b+d)%3;
						int c_ = c | (d==3?1:0);
						int s_ = (a_<<3)|(b_<<1)|c_;
						int j_ = (i<sz-5?0:(j*10+d)%p);
						dp[v][j_][s_] += val;
						if(dp[v][j_][s_]>=MOD) dp[v][j_][s_] -= MOD;
					}
				}}}
			}
			u ^= 1;
			v ^= 1;
		}
		long ret = 0;

		for(int j=1; j<p; j++){
		for(int a=0;a<2;a++){
		for(int b=0;b<3;b++){
		for(int c=0;c<2;c++){
			if(b!=0 && c==0) continue;
			int s = (a<<3)|(b<<1)|c;
			ret += dp[u][j][s];
			if(ret >= MOD) ret-=MOD;
		}}}}

		return ret;
	}

	private void solver(){

		Scanner s = new Scanner(System.in);
		char[] a = s.next().toCharArray();
		char[] b = s.next().toCharArray();
		int p = Integer.parseInt(s.next());

		long ans = calc(b, p);
		ans = (ans - calc(a,p) + MOD) % MOD;
		int x = 0;
		int y = 0;
		int z = 0;
		for(int i=0; i<a.length; i++){
			int k = a[i] - '0';
			x = (x+k)%3;
			y |= k==3?1:0;
			z = (z*10+k)%p;
		}
		if((x==0 || y==1) && z!=0){
			ans += 1;
			ans %= MOD;
		}

		System.out.println(ans);
	}


	public static void main(String[] args){
		Main hoge = new Main();
		hoge.solver();
	}
}
0