結果

問題 No.2513 Power Eraser
コンテスト
ユーザー 👑 amentorimaru
提出日時 2023-06-13 23:08:56
言語 C++17(clang)
(clang++ 22.1.8 + boost 1.92.0 + ACL)
コンパイル:
clang++ -O2 -lm -std=c++1z -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 316 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,330 ms
コンパイル使用メモリ 143,040 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-08-31 21:52:19
合計ジャッジ時間 18,580 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 TLE * 1 -- * 27
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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[j] - a[i];
    }
  }
  cout << ans.val();
  return 0;
}
0