結果
問題 | No.444 旨味の相乗効果 |
ユーザー | hermione17 |
提出日時 | 2016-11-11 23:58:50 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,584 bytes |
コンパイル時間 | 3,708 ms |
コンパイル使用メモリ | 77,920 KB |
実行使用メモリ | 58,084 KB |
最終ジャッジ日時 | 2024-11-25 10:30:35 |
合計ジャッジ時間 | 17,942 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 170 ms
54,012 KB |
testcase_01 | AC | 167 ms
54,160 KB |
testcase_02 | AC | 186 ms
54,216 KB |
testcase_03 | AC | 212 ms
56,200 KB |
testcase_04 | AC | 964 ms
57,148 KB |
testcase_05 | WA | - |
testcase_06 | AC | 179 ms
54,180 KB |
testcase_07 | WA | - |
testcase_08 | AC | 280 ms
56,724 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 588 ms
57,228 KB |
testcase_13 | AC | 558 ms
57,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 961 ms
57,124 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 804 ms
56,688 KB |
testcase_20 | AC | 797 ms
57,072 KB |
testcase_21 | AC | 122 ms
53,876 KB |
testcase_22 | AC | 123 ms
54,152 KB |
testcase_23 | AC | 974 ms
57,104 KB |
testcase_24 | AC | 128 ms
53,752 KB |
testcase_25 | AC | 765 ms
57,040 KB |
testcase_26 | AC | 515 ms
56,748 KB |
testcase_27 | WA | - |
ソースコード
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 += (a[j] * power.a[i+n][j]); if ((j & 7) == 7) { ans %= MOD; } } } 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] += (a[i][j] * that.a[j][k]); } if ((j & 7) == 7) { 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; } } }