結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー iomiriomir
提出日時 2024-07-26 22:26:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 449 ms / 1,500 ms
コード長 1,067 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 204,124 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-26 22:26:54
合計ジャッジ時間 7,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 408 ms
6,940 KB
testcase_02 AC 422 ms
6,940 KB
testcase_03 AC 449 ms
6,940 KB
testcase_04 AC 250 ms
6,944 KB
testcase_05 AC 275 ms
6,940 KB
testcase_06 AC 148 ms
6,944 KB
testcase_07 AC 144 ms
6,944 KB
testcase_08 AC 236 ms
6,948 KB
testcase_09 AC 71 ms
6,940 KB
testcase_10 AC 75 ms
6,944 KB
testcase_11 AC 73 ms
6,940 KB
testcase_12 AC 74 ms
6,940 KB
testcase_13 AC 73 ms
6,940 KB
testcase_14 AC 102 ms
6,944 KB
testcase_15 AC 111 ms
6,944 KB
testcase_16 AC 60 ms
6,944 KB
testcase_17 AC 94 ms
6,940 KB
testcase_18 AC 104 ms
6,940 KB
testcase_19 AC 12 ms
6,940 KB
testcase_20 AC 13 ms
6,948 KB
testcase_21 AC 5 ms
6,940 KB
testcase_22 AC 9 ms
6,940 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 3 ms
6,944 KB
testcase_33 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;

#define all(v) v.begin(),v.end()
using ll = long long;
using ull = unsigned long long;
using vll=vector<ll>;
using vvll = vector<vector<ll>>;
using P = pair<ll,ll>;
using vp=vector<pair<ll, ll>>;
//using mint=modint1000000007;
//using mint=modint998244353;

const ll INF=1ll<<60;
ll mod10=1e9+7;
ll mod99=998244353;
const double PI = acos(-1);

#define rep(i,n) for (ll i=0;i<n;++i)
#define per(i,n) for(ll i=n-1;i>=0;--i)
#define rep2(i,a,n) for (ll i=a;i<n;++i)
#define per2(i,a,n) for (ll i=a;i>=n;--i)

template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }

bool solve(){
    ll N;cin>>N;
    vll A(N);rep(i,N) cin>>A[i];
    per(i,N) A[i]-=A[0];
    ll a=0;
    rep(i,N){
        a=gcd(a,A[i]);
        cout<<a<<endl;
    }
    return 0;
}




int main(){
   cin.tie(0);
   ios::sync_with_stdio(false);
   while(solve());
}
    
0