結果
問題 | No.1510 Simple Integral |
ユーザー | SSRS |
提出日時 | 2021-05-14 23:10:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,645 bytes |
コンパイル時間 | 1,736 ms |
コンパイル使用メモリ | 174,348 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 04:17:35 |
合計ジャッジ時間 | 7,292 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 6 ms
6,816 KB |
testcase_24 | AC | 7 ms
6,820 KB |
testcase_25 | AC | 6 ms
6,820 KB |
testcase_26 | AC | 6 ms
6,816 KB |
testcase_27 | AC | 6 ms
6,820 KB |
testcase_28 | AC | 6 ms
6,820 KB |
testcase_29 | AC | 6 ms
6,816 KB |
testcase_30 | AC | 6 ms
6,820 KB |
testcase_31 | AC | 6 ms
6,820 KB |
testcase_32 | AC | 6 ms
6,820 KB |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long MOD = 998244353; long long modpow(long long a, long long b){ long long ans = 1; while (b > 0){ if (b % 2 == 1){ ans *= a; ans %= MOD; } a *= a; a %= MOD; b /= 2; } return ans; } long long modinv(long long a){ return modpow(a, MOD - 2); } int main(){ int N; cin >> N; vector<long long> A(N); for (int i = 0; i < N; i++){ cin >> A[i]; } vector<vector<long long>> mat(N, vector<long long>(N + 1, 0)); for (int i = 0; i < N; i++){ vector<long long> f = {1}; for (int j = 0; j < N; j++){ if (j != i){ int M = f.size(); vector<long long> g(M + 1, 0); for (int k = 0; k < M; k++){ g[k] += f[k] * A[j] % MOD * A[j]; g[k] %= MOD; g[k + 1] += f[k]; g[k + 1] %= MOD; } swap(f, g); } } for (int j = 0; j < N; j++){ mat[j][i] = f[j]; } } mat[0][N] = 1; for (int i = 0; i < N; i++){ int p = i; for (int j = i; j < N; j++){ if (mat[j][i] > 0){ p = j; } } swap(mat[i], mat[p]); assert(mat[i][i] != 0); long long c = modinv(mat[i][i]); for (int j = i + 1; j <= N; j++){ mat[i][j] *= c; mat[i][j] %= MOD; } for (int j = 0; j < N; j++){ if (i != j){ for (int k = i + 1; k <= N; k++){ mat[j][k] -= mat[j][i] * mat[i][k] % MOD; mat[j][k] += MOD; mat[j][k] %= MOD; } } } } long long ans = 0; for (int i = 0; i < N; i++){ ans += mat[i][N] * modinv(A[i]) % MOD; } ans %= MOD; cout << ans << endl; }