結果

問題 No.1050 Zero (Maximum)
ユーザー htensaihtensai
提出日時 2020-06-04 17:47:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 4,000 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 54,872 KB
最終ジャッジ日時 2024-05-07 03:37:50
合計ジャッジ時間 6,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,176 KB
testcase_01 AC 128 ms
53,996 KB
testcase_02 AC 188 ms
54,496 KB
testcase_03 AC 166 ms
54,872 KB
testcase_04 AC 178 ms
54,520 KB
testcase_05 AC 180 ms
54,524 KB
testcase_06 AC 169 ms
54,288 KB
testcase_07 AC 171 ms
54,352 KB
testcase_08 AC 134 ms
54,072 KB
testcase_09 AC 165 ms
54,472 KB
testcase_10 AC 191 ms
54,336 KB
testcase_11 AC 179 ms
54,540 KB
testcase_12 AC 132 ms
54,192 KB
testcase_13 AC 125 ms
54,232 KB
testcase_14 AC 121 ms
53,860 KB
testcase_15 AC 124 ms
54,296 KB
testcase_16 AC 187 ms
54,452 KB
testcase_17 AC 181 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int m = sc.nextInt();
		int kk = sc.nextInt();
		long[][][] dp = new long[m][m][31];
		for (int i = 0; i < m; i++) {
		    for (int j = 0; j < m; j++) {
		        dp[i][(i + j) % m][0]++;
		        dp[i][i * j % m][0]++;
		    }
		}
		for (int i = 1; i < 31; i++) {
		    for (int j = 0; j < m; j++) {
		        for (int k = 0; k < m; k++) {
		            for (int l = 0; l < m; l++) {
		                dp[j][l][i] += dp[j][k][i - 1] * dp[k][l][i - 1] % MOD;
		                dp[j][l][i] %= MOD;
		            }
		        }
		    }
		}
		long[] base = new long[m];
		base[0] = 1;
		for (int i = 30; i >= 0 && kk > 0; i--) {
		    if (kk < (1 << i)) {
		        continue;
		    }
		    kk -= (1 << i);
		    long[] next = new long[m];
		    for (int j = 0; j < m; j++) {
		        for (int k = 0; k < m; k++) {
		            next[k] += base[j] * dp[j][k][i] % MOD;
		            next[k] %= MOD;
		        }
		    }
		    base = next;
		}
		System.out.println(base[0]);
	}
}
0