結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー pia019pia019
提出日時 2024-07-26 23:24:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 433 ms / 1,500 ms
コード長 528 bytes
コンパイル時間 3,099 ms
コンパイル使用メモリ 247,352 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-07-26 23:24:44
合計ジャッジ時間 8,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 416 ms
5,632 KB
testcase_02 AC 433 ms
5,760 KB
testcase_03 AC 431 ms
5,632 KB
testcase_04 AC 245 ms
5,376 KB
testcase_05 AC 274 ms
5,376 KB
testcase_06 AC 150 ms
5,376 KB
testcase_07 AC 146 ms
5,376 KB
testcase_08 AC 231 ms
5,376 KB
testcase_09 AC 73 ms
5,376 KB
testcase_10 AC 73 ms
5,376 KB
testcase_11 AC 74 ms
5,376 KB
testcase_12 AC 73 ms
5,376 KB
testcase_13 AC 72 ms
5,376 KB
testcase_14 AC 103 ms
5,376 KB
testcase_15 AC 110 ms
5,376 KB
testcase_16 AC 60 ms
5,376 KB
testcase_17 AC 93 ms
5,376 KB
testcase_18 AC 103 ms
5,376 KB
testcase_19 AC 13 ms
5,376 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = 1<<30;
const long long INFLL = 1LL<<60;
const int MOD = 998244343;


int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n; cin >> n;
    vector<ll> a(n);
    for (int i = 0; i < n; i++) cin >> a[i];
    
    cout << 0 << endl;
    cout << abs(a[1] - a[0]) << endl;
    ll g = abs(a[1] - a[0]);
    for (int i = 2; i < n; i++){
        ll b = abs(a[i] - a[i-1]);
        g = gcd(g, b);
        cout << g << endl;
    }
}
0