結果

問題 No.260 世界のなんとか3
ユーザー GrenacheGrenache
提出日時 2015-12-08 23:30:15
言語 Java21
(openjdk 21)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 3,984 bytes
コンパイル時間 4,444 ms
コンパイル使用メモリ 79,068 KB
実行使用メモリ 67,176 KB
最終ジャッジ日時 2024-05-20 20:03:31
合計ジャッジ時間 15,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,172 KB
testcase_01 AC 58 ms
50,556 KB
testcase_02 AC 57 ms
50,488 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 AC 183 ms
56,400 KB
testcase_06 AC 174 ms
56,660 KB
testcase_07 AC 441 ms
60,772 KB
testcase_08 AC 369 ms
59,316 KB
testcase_09 AC 254 ms
58,228 KB
testcase_10 AC 459 ms
60,788 KB
testcase_11 AC 493 ms
60,480 KB
testcase_12 AC 348 ms
58,588 KB
testcase_13 AC 168 ms
56,692 KB
testcase_14 AC 431 ms
60,864 KB
testcase_15 AC 201 ms
56,296 KB
testcase_16 AC 406 ms
60,720 KB
testcase_17 AC 382 ms
58,612 KB
testcase_18 AC 375 ms
59,876 KB
testcase_19 AC 411 ms
60,764 KB
testcase_20 AC 348 ms
58,576 KB
testcase_21 AC 304 ms
58,756 KB
testcase_22 AC 415 ms
60,604 KB
testcase_23 AC 125 ms
56,112 KB
testcase_24 AC 394 ms
60,600 KB
testcase_25 AC 279 ms
59,904 KB
testcase_26 AC 199 ms
58,616 KB
testcase_27 AC 57 ms
50,524 KB
testcase_28 MLE -
testcase_29 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Iterator;


public class Main_yukicoder260 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Printer pr = new Printer(System.out);

        char[] a = sc.next().toCharArray();
        char[] b = sc.next().toCharArray();
        int p = 0;

        int ret = (aho(b, p) - aho(sub(a, '1'), p) + MOD) % MOD;

        pr.println(ret);

        pr.close();
        sc.close();
    }

	static final int MOD = 1_000_000_007;
	static int[] mod8;

	private static int aho(char[] b, int p) {
		int n = b.length;

		if (mod8 == null) {
			mod8 = new int[10_000 + 1];
			int mod = 1;
			for (int i = 0; i <= 10_000; i++) {
				mod8[i] = mod % 8;
				mod *= 10;
			}
		}

		int d = 3;
		int[][][][] dp = new int[2][d][8][n + 1];
		int[][][][] dp2 = new int[2][d][8][n + 1];
		dp[0][0][0][0] = 1;
		dp2[0][0][0][0] = 1;
		for (int j = 1; j <= n; j++) {
			int num = b[n - j] - '0';
			for (int l = 0; l < 2; l++) {
				for (int i = 0; i < d; i++) {
					for (int i8 = 0; i8 < 8; i8++) {
						for (int k = 0; k < 10; k++) {
							if (k != 3) {
								dp[l][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] += dp[l][i][i8][j - 1];
								dp[l][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] %= MOD;
							} else {
								dp[1][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] += dp[l][i][i8][j - 1];
								dp[1][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] %= MOD;
							}

							if (k == num) {
								if (k != 3) {
									dp2[l][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] += dp2[l][i][i8][j - 1];
									dp2[l][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] %= MOD;
								} else {
									dp2[1][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] += dp2[l][i][i8][j - 1];
									dp2[1][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] %= MOD;
								}
							} else if (k < num) {
								if (k != 3) {
									dp2[l][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] += dp[l][i][i8][j - 1];
									dp2[l][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] %= MOD;
								} else {
									dp2[1][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] += dp[l][i][i8][j - 1];
									dp2[1][(i + k) % d][(i8 + k * mod8[j - 1]) % 8][j] %= MOD;
								}
							}
						}
					}
				}
			}
		}

		int ret = 0;
		for (int l = 0; l < 2; l++) {
			for (int i = 0; i < d; i++) {
				for (int i8 = 0; i8 < 8; i8++) {
					if ((l == 1 || i == 0) && i8 != 0) {
						ret += dp2[l][i][i8][n];
						ret %= MOD;
					}
				}
			}
		}

		return ret;
	}

    private static char[] sub(char[] a, char c) {
    	for (int i = a.length - 1; i >= 0; i--) {
    		if (a[i] - c < 0) {
    			a[i] = (char)(a[i] - c + 10 + '0');
    			c = '1';
    		} else {
    			a[i] = (char)(a[i] - c + '0');
    			break;
    		}
    	}

    	return a;
	}

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
					it = Arrays.asList(br.readLine().split(" ")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}

		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}

		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}

		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}

		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0