結果
問題 | No.1521 Playing Musical Chairs Alone |
ユーザー | tenten |
提出日時 | 2023-07-18 16:31:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,725 bytes |
コンパイル時間 | 2,711 ms |
コンパイル使用メモリ | 84,328 KB |
実行使用メモリ | 55,900 KB |
最終ジャッジ日時 | 2024-09-18 15:48:37 |
合計ジャッジ時間 | 8,698 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
50,896 KB |
testcase_01 | AC | 72 ms
51,076 KB |
testcase_02 | AC | 74 ms
50,960 KB |
testcase_03 | AC | 72 ms
51,196 KB |
testcase_04 | AC | 71 ms
50,664 KB |
testcase_05 | WA | - |
testcase_06 | AC | 195 ms
53,740 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 70 ms
38,028 KB |
testcase_13 | AC | 71 ms
38,028 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 300 ms
43,240 KB |
testcase_23 | WA | - |
testcase_24 | AC | 303 ms
43,204 KB |
testcase_25 | AC | 306 ms
43,000 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static final int MOD = 1000000007; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int k = sc.nextInt(); int l = sc.nextInt(); long[][][] matrix = new long[30][n][n]; for (int i = 0; i < n; i++) { for (int j = 1; j <= l; j++) { matrix[0][i][(i + j) % n] = 1; } } for (int i = 1; i < 30; i++) { for (int a = 0; a < n; a++) { for (int b = 0; b < n; b++) { for (int c = 0; c < n; c++) { matrix[i][a][c] += matrix[i - 1][a][b] * matrix[i - 1][b][c] % MOD; matrix[i][a][c] %= MOD; } } } } long[] ans = new long[n]; ans[0] = 1; for (int i = 29; i >= 0; i--) { if (k < (1 << i)) { continue; } k -= (1 << i); long[] next = new long[n]; for (int a = 0; a < n; a++) { for (int b = 0; b < n; b++) { next[a] += matrix[i][a][b] * ans[b] % MOD; next[a] %= MOD; } } ans = next; } System.out.println(String.join("\n", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new))); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }