結果

問題 No.260 世界のなんとか3
ユーザー ぴろずぴろず
提出日時 2015-08-01 00:06:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 1,479 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 77,496 KB
実行使用メモリ 57,628 KB
最終ジャッジ日時 2024-11-07 18:01:54
合計ジャッジ時間 13,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,124 KB
testcase_01 AC 142 ms
41,560 KB
testcase_02 AC 125 ms
40,812 KB
testcase_03 AC 514 ms
57,544 KB
testcase_04 AC 559 ms
57,316 KB
testcase_05 AC 240 ms
45,940 KB
testcase_06 AC 217 ms
44,416 KB
testcase_07 AC 429 ms
54,152 KB
testcase_08 AC 276 ms
48,608 KB
testcase_09 AC 275 ms
49,476 KB
testcase_10 AC 492 ms
54,352 KB
testcase_11 AC 412 ms
57,052 KB
testcase_12 AC 332 ms
50,596 KB
testcase_13 AC 225 ms
44,456 KB
testcase_14 AC 382 ms
51,360 KB
testcase_15 AC 256 ms
45,724 KB
testcase_16 AC 367 ms
51,744 KB
testcase_17 AC 392 ms
53,332 KB
testcase_18 AC 323 ms
50,676 KB
testcase_19 AC 364 ms
51,016 KB
testcase_20 AC 329 ms
49,748 KB
testcase_21 AC 300 ms
49,428 KB
testcase_22 AC 408 ms
51,572 KB
testcase_23 AC 189 ms
43,396 KB
testcase_24 AC 334 ms
50,412 KB
testcase_25 AC 302 ms
53,732 KB
testcase_26 AC 287 ms
53,660 KB
testcase_27 AC 128 ms
41,020 KB
testcase_28 AC 623 ms
57,532 KB
testcase_29 AC 629 ms
57,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no260b;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static long MOD = 1000000007;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String a = sc.next();
		String b = sc.next();
		long bb = aho(b);
		long aa = aho(new BigInteger(a).subtract(BigInteger.ONE).toString());
		System.out.println((bb + MOD - aa) % MOD);
	}
	public static long aho(String ss) {
		char[] s = ss.toCharArray();
		int n = s.length;
		long[][][][] dp = new long[2][2][24][n+1];
		dp[0][0][0][0] = 1;
		for(int i=0;i<n;i++) {
			for(int j=0;j<24;j++) {
				for(int k=0;k<2;k++) {
					LOOP: for(int l=0;l<2;l++) {
						for(int m=0;m<=9;m++) {
							int l2;
							if (l == 0) {
								if (m + '0' == s[i]) {
									l2 = 0;
								}else if(m + '0' < s[i]) {
									l2 = 1;
								}else{
									continue LOOP;
								}
							}else{
								l2 = 1;
							}
							int k2 = (k == 1 || m == 3) ? 1 : 0;
							int j2 = (j * 10 + m) % 24;
							dp[l2][k2][j2][i+1] += dp[l][k][j][i];
						}
					}
				}
			}
			for(int j=0;j<24;j++) {
				for(int k=0;k<2;k++) {
					for(int l=0;l<2;l++) {
						dp[l][k][j][i+1] %= MOD;
					}
				}
			}
		}
		long ret = 0;
		for(int i=0;i<2;i++) {
			for(int j=0;j<2;j++) {
				for(int k=0;k<24;k++) {
					if ((j == 1 || (k % 3 == 0)) && (k % 8 != 0)) {
						ret += dp[i][j][k][n];
						if (ret >= MOD) {
							ret -= MOD;
						}
					}
				}
			}
		}
		return ret;
	}
}
0