結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー makichanmakichan
提出日時 2024-07-26 21:57:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 194 ms / 1,500 ms
コード長 558 bytes
コンパイル時間 4,876 ms
コンパイル使用メモリ 308,684 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-26 21:57:26
合計ジャッジ時間 8,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 117 ms
6,812 KB
testcase_02 AC 194 ms
6,944 KB
testcase_03 AC 177 ms
6,944 KB
testcase_04 AC 117 ms
6,940 KB
testcase_05 AC 114 ms
6,944 KB
testcase_06 AC 80 ms
6,940 KB
testcase_07 AC 73 ms
6,940 KB
testcase_08 AC 105 ms
6,944 KB
testcase_09 AC 29 ms
6,940 KB
testcase_10 AC 42 ms
6,940 KB
testcase_11 AC 36 ms
6,940 KB
testcase_12 AC 34 ms
6,944 KB
testcase_13 AC 36 ms
6,940 KB
testcase_14 AC 35 ms
6,940 KB
testcase_15 AC 46 ms
6,940 KB
testcase_16 AC 26 ms
6,940 KB
testcase_17 AC 36 ms
6,940 KB
testcase_18 AC 53 ms
6,944 KB
testcase_19 AC 8 ms
6,940 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 6 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

int main(){
    int n;
    cin >> n;
    vector<ll> a(n);
    rep(i,0,n)cin >> a[i];
    ll g=0;
    cout << g << "\n";
    rep(i,1,n){
        g=gcd(g,a[i]-a[i-1]);
        cout << g << "\n";
    }
}
0