結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 255 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 147 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 73 ms
5,376 KB
testcase_10 AC 76 ms
5,376 KB
testcase_11 AC 73 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 75 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 58 ms
5,376 KB
testcase_17 AC 95 ms
5,376 KB
testcase_18 AC 102 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 14 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 9 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 3 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 4 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 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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 << a[1] - a[0] << endl;
    ll g = 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