結果
| 問題 |
No.2513 Power Eraser
|
| コンテスト | |
| ユーザー |
amentorimaru
|
| 提出日時 | 2023-06-13 23:03:46 |
| 言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 356 bytes |
| コンパイル時間 | 5,044 ms |
| コンパイル使用メモリ | 140,012 KB |
| 実行使用メモリ | 13,888 KB |
| 最終ジャッジ日時 | 2024-09-20 16:31:39 |
| 合計ジャッジ時間 | 14,458 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 TLE * 1 -- * 27 |
ソースコード
#include<iostream>
#include <atcoder/all>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n);
for(int i=0;i<n;i++)
cin>>a[i];
atcoder::modint998244353 ans = 1;
for(int i=n-1;i>=0;i--){
for (int j=0; j<i;j++) {
ans *= a[i] - a[j];
}
}
if ((n / 2) % 2) {
ans *= -1;
}
cout << ans.val();
return 0;
}
amentorimaru