結果

問題 No.260 世界のなんとか3
ユーザー ukakukak
提出日時 2017-01-05 07:46:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,053 bytes
コンパイル時間 3,899 ms
コンパイル使用メモリ 77,412 KB
実行使用メモリ 57,352 KB
最終ジャッジ日時 2024-12-16 09:14:44
合計ジャッジ時間 15,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,084 KB
testcase_01 AC 127 ms
41,092 KB
testcase_02 AC 129 ms
41,104 KB
testcase_03 WA -
testcase_04 AC 435 ms
56,628 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 278 ms
48,132 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 428 ms
53,596 KB
testcase_13 WA -
testcase_14 AC 407 ms
53,580 KB
testcase_15 AC 264 ms
46,160 KB
testcase_16 AC 375 ms
54,116 KB
testcase_17 WA -
testcase_18 AC 369 ms
53,880 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 376 ms
52,648 KB
testcase_25 AC 328 ms
52,024 KB
testcase_26 AC 293 ms
53,308 KB
testcase_27 AC 131 ms
41,332 KB
testcase_28 AC 470 ms
56,960 KB
testcase_29 AC 580 ms
57,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    private static final int MOD = 1_000_000_007;

    public static void main(String[] args) {
        try (Scanner in = new Scanner(System.in)) {
            String A = in.next();
            String B = in.next();
            int sekaiA = sekai(A.toCharArray(), true);
            int sekaiB = sekai(B.toCharArray(), false);
            System.out.println(sekaiB - sekaiA);
        }
    }

    private static int sekai(char[] N, boolean ignoreAllTight) {
        final int n = N.length;
        // position, tight, mod3, has3, mod8
        final int[][][][][] dp = new int[n + 1][2][3][2][8];
        
        dp[0][1][0][0][0] = 1;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < 2; j++) {
                for (int k = 0; k < 3; k++) {
                    for (int l = 0; l < 2; l++) {
                        for (int m = 0; m < 8; m++) {
                            int lim = j == 1 ? N[i] - '0' : 9;
                            for (int d = 0; d < lim + 1; d++) {
                                int nj = j == 1 && d == lim ? 1 : 0;
                                int nk = (10 * k + d) % 3;
                                int nl = l == 1 || d == 3 ? 1 : 0;
                                int nm = (10 * m + d) % 8;
                                dp[i + 1][nj][nk][nl][nm] += dp[i][j][k][l][m];
                                dp[i + 1][nj][nk][nl][nm] %= MOD;
                            }
                        }
                    }
                }
            }
        }

        int sum = 0;
        for (int j = 0; j < (ignoreAllTight ? 1 : 2); j++) {
            for (int k = 0; k < 3; k++) {
                for (int l = 0; l < 2; l++) {
                    for (int m = 0; m < 8; m++) {
                        if ((k == 0 || l == 1) && m != 0) {
                            sum += dp[n][j][k][l][m];
                            sum %= MOD;
                        }
                    }
                }
            }
        }
        return sum;
    }
}
0