結果
問題 | No.444 旨味の相乗効果 |
ユーザー | hermione17 |
提出日時 | 2016-11-11 23:54:56 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,581 bytes |
コンパイル時間 | 3,487 ms |
コンパイル使用メモリ | 77,548 KB |
実行使用メモリ | 57,480 KB |
最終ジャッジ日時 | 2024-11-25 10:23:56 |
合計ジャッジ時間 | 15,850 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 170 ms
48,280 KB |
testcase_01 | AC | 177 ms
47,956 KB |
testcase_02 | AC | 175 ms
48,160 KB |
testcase_03 | AC | 177 ms
48,748 KB |
testcase_04 | AC | 743 ms
50,836 KB |
testcase_05 | AC | 226 ms
49,324 KB |
testcase_06 | AC | 177 ms
50,052 KB |
testcase_07 | AC | 235 ms
52,460 KB |
testcase_08 | AC | 237 ms
52,900 KB |
testcase_09 | AC | 330 ms
52,848 KB |
testcase_10 | AC | 335 ms
52,464 KB |
testcase_11 | AC | 312 ms
52,296 KB |
testcase_12 | AC | 477 ms
53,128 KB |
testcase_13 | WA | - |
testcase_14 | AC | 479 ms
52,820 KB |
testcase_15 | AC | 485 ms
53,004 KB |
testcase_16 | AC | 755 ms
53,220 KB |
testcase_17 | AC | 638 ms
46,424 KB |
testcase_18 | AC | 621 ms
46,668 KB |
testcase_19 | AC | 637 ms
46,728 KB |
testcase_20 | WA | - |
testcase_21 | AC | 146 ms
41,700 KB |
testcase_22 | AC | 150 ms
41,964 KB |
testcase_23 | AC | 683 ms
46,568 KB |
testcase_24 | AC | 156 ms
42,752 KB |
testcase_25 | AC | 580 ms
46,424 KB |
testcase_26 | AC | 441 ms
46,472 KB |
testcase_27 | AC | 726 ms
46,776 KB |
ソースコード
import java.io.PrintStream; import java.util.Scanner; public class Y444 { Scanner in = new Scanner(System.in); PrintStream out = new PrintStream(System.out); long MOD = 1000000007; Y444() throws Exception { int n = in.nextInt(); long c = in.nextLong(); int[] a = new int[n]; for (int i = 0; i < n; i++) { a[i] = in.nextInt(); } Matrix m = new Matrix(); for (int i = 0; i < n; i++) { m.a[i][i] = a[i]; m.a[i+n][i+n] = a[i]; for (int j = 0; j < i; j++) { m.a[i+n][j] = a[i]; m.a[i+n][j+n] = a[i]; } } Matrix power = m.pow(c - 1); long ans = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { ans = (ans + a[j] * power.a[i+n][j]) % MOD; } } power=m.mul(m); out.println(ans); } public static void main(String argv[]) throws Exception { new Y444(); } class Matrix { long[][] a = new long[160][160]; Matrix mul(Matrix that) { Matrix ret = new Matrix(); for (int i = 0; i < a.length; i++) { for (int j = 0; j < a.length; j++) { for (int k = 0; k < a.length; k++) { ret.a[i][k] = (ret.a[i][k] + a[i][j] * that.a[j][k]); } if ((j & 15) == 15) { for (int k = 0; k < a.length; k++) { ret.a[i][k] %= MOD; } } } } return ret; } Matrix pow(long p) { Matrix ret = new Matrix(); Matrix x = this; for (int i = 0; i < a.length; i++) { ret.a[i][i] = 1; } while (p > 0) { if ((p & 1) == 1) { ret = x.mul(ret); } x = x.mul(x); p >>= 1; } return ret; } } }