結果
問題 | No.2556 Increasing Matrix |
ユーザー | hiro1729 |
提出日時 | 2023-12-03 09:27:49 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 611 bytes |
コンパイル時間 | 1,616 ms |
コンパイル使用メモリ | 31,104 KB |
実行使用メモリ | 9,372 KB |
最終ジャッジ日時 | 2024-09-26 22:02:46 |
合計ジャッジ時間 | 10,103 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | AC | 38 ms
5,376 KB |
testcase_15 | AC | 30 ms
5,376 KB |
testcase_16 | AC | 20 ms
5,376 KB |
testcase_17 | AC | 50 ms
5,376 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <stdio.h> const int mod = 998244353; int main() { int N; scanf("%d", &N); int A[100000]; for (int i = 0; i < N; i++) scanf("%d", &A[i]); long long inv[100000]; inv[1] = 1; long long invf = 1; long long ans = 1; for (int i = 2; i < N; i++) { inv[i] = mod - inv[mod % i] * (mod / i) % mod; invf = invf * inv[i] % mod; ans = ans * invf % mod; } for (int j = 0; j < N; j++) { for (int i = j + 1; i < N; i++) { ans = ans * (A[i] - A[j] + i - j) % mod; } } printf("%d\n", ans * ans % mod); }