結果

問題 No.2821 A[i] ← 2A[j] - A[i]
コンテスト
ユーザー Drtever
提出日時 2026-09-05 17:21:30
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.92.0 + ACL)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 33 ms / 1,500 ms
+ 62µs
コード長 407 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,724 ms
コンパイル使用メモリ 349,280 KB
実行使用メモリ 9,784 KB
最終ジャッジ日時 2026-09-05 17:21:43
合計ジャッジ時間 9,461 ms
ジャッジサーバーID
(参考情報)
judge4_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>

using i64 = std::int64_t;

signed main() {
    int n; std::cin >> n;
    std::valarray<i64> a(n); for(i64& x : a) std::cin >> x;

    i64 ans = 0;
    for(const auto v : a) {
        ans = std::__gcd(ans, std::abs(v - a[0]));
        std::cout << ans << "\n";
    }
}

__attribute__((constructor)) inline void fast_io() { std::ios::sync_with_stdio(false), std::cin.tie(nullptr); }
0