結果

問題 No.315 世界のなんとか3.5
ユーザー ぴろずぴろず
提出日時 2015-12-08 14:22:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 596 ms / 2,000 ms
コード長 2,708 bytes
コンパイル時間 2,276 ms
コンパイル使用メモリ 77,480 KB
実行使用メモリ 57,028 KB
最終ジャッジ日時 2024-09-14 20:09:53
合計ジャッジ時間 15,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,012 KB
testcase_01 AC 149 ms
41,076 KB
testcase_02 AC 161 ms
40,616 KB
testcase_03 AC 123 ms
40,968 KB
testcase_04 AC 127 ms
41,260 KB
testcase_05 AC 144 ms
41,068 KB
testcase_06 AC 170 ms
41,000 KB
testcase_07 AC 135 ms
41,152 KB
testcase_08 AC 144 ms
40,752 KB
testcase_09 AC 126 ms
40,984 KB
testcase_10 AC 126 ms
41,160 KB
testcase_11 AC 124 ms
41,004 KB
testcase_12 AC 280 ms
47,496 KB
testcase_13 AC 288 ms
47,440 KB
testcase_14 AC 387 ms
51,140 KB
testcase_15 AC 399 ms
51,280 KB
testcase_16 AC 426 ms
51,344 KB
testcase_17 AC 413 ms
51,388 KB
testcase_18 AC 329 ms
48,060 KB
testcase_19 AC 321 ms
47,876 KB
testcase_20 AC 329 ms
48,524 KB
testcase_21 AC 343 ms
48,552 KB
testcase_22 AC 430 ms
51,000 KB
testcase_23 AC 423 ms
51,004 KB
testcase_24 AC 407 ms
51,104 KB
testcase_25 AC 426 ms
51,044 KB
testcase_26 AC 411 ms
51,128 KB
testcase_27 AC 400 ms
51,048 KB
testcase_28 AC 455 ms
51,184 KB
testcase_29 AC 526 ms
56,932 KB
testcase_30 AC 516 ms
56,944 KB
testcase_31 AC 496 ms
57,028 KB
testcase_32 AC 570 ms
56,768 KB
testcase_33 AC 419 ms
50,876 KB
testcase_34 AC 552 ms
56,748 KB
testcase_35 AC 596 ms
56,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no315;

import java.io.FileNotFoundException;
import java.util.Scanner;

public class Main {

	public static long MOD = 1000000007;
	public static long stime;
	public static void main(String[] args) throws FileNotFoundException {
		Scanner sc = new Scanner(System.in);
		//Scanner sc = new Scanner(new File("in.txt"));
		stime = System.nanoTime();
		String a = sc.next();
		String b = sc.next();
		int zeros = sc.next().length() - 1;
		long bb = aho(b,zeros);
		char[] as = a.toCharArray();
		for(int i=as.length-1;i>=0;i--) {
			if (as[i] >= '1') {
				as[i]--;
				break;
			}
			as[i] = '9';
		}
		long aa = aho(String.valueOf(as),zeros);
		System.out.println((bb + MOD - aa) % MOD);
	}
	public static void lap() {
		System.out.println((System.nanoTime() - stime) / 1000000);
	}
	public static boolean useNaive = false;
	public static long aho(String ss,int zeros) {
		if (useNaive && ss.length() <= 5) {
			return naiveAho(Integer.parseInt(ss), zeros);
		}
		char[] s = ss.toCharArray();
		int n = Math.max(0,s.length - 3 - zeros);
		int[][][] dp = new int[2][4][n+1];
		dp[1][0][0] = 1;
		for(int i=0;i<n;i++) {
			for(int large=0;large<2;large++) {
				for(int j=0;j<4;j++) {
					int max = large == 0 ? 9 : s[i] - '0';
					for(int k=0;k<=max;k++) {
						int nlarge = large & (k == max ? 1 : 0);
						int nj = (j == 3 || k == 3) ? 3 : (j + k) % 3;
						dp[nlarge][nj][i+1] += dp[large][j][i];
						if (dp[nlarge][nj][i+1] >= MOD) {
							dp[nlarge][nj][i+1] -= MOD;
						}
					}
				}
			}
		}
		long ans = 0;
		int max = 1000;
		int step = 8;
		for(int i=0;i<zeros;i++) {
			max *= 10;
			step *= 10;
		}
		int tail = Integer.parseInt(ss.substring(n, ss.length()));
		for(int i=0;i<max;i++) {
			if (i % step == 0) {
				continue;
			}
			int sum = 0;
			boolean three = false;
			int x = i;
			while(x > 0) {
				int d = x % 10;
				sum += d;
				if (d == 3) {
					three = true;
					break;
				}
				x /= 10;
			}

			for(int large=0;large<2;large++) {
				if (large == 1 && i > tail) {
					continue;
				}
				for(int j=0;j<4;j++) {
					if (j == 3 || three || (j+sum)%3==0) {
						if (dp[large][j][n] > 0) {
//							System.out.println(i + "," + large + "," + j + "," + n);
						}
						ans += dp[large][j][n];
					}
				}
			}
		}
		return ans % MOD;

	}
	public static long naiveAho(int max,int zeros) {
		long ans = 0;
		int step = 8;
		for(int i=0;i<zeros;i++) {
			step *= 10;
		}
		for(int i=0;i<=max;i++) {
			if (i % step == 0) {
				continue;
			}
			int x = i;
			boolean three = false;
			while(x > 0) {
				int d = x % 10;
				if (d == 3) {
					three = true;
					break;
				}
				x /= 10;
			}
			if (i % 3 == 0 || three) {
				ans++;
			}
		}
		return ans;
	}
}
0