結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー HIcoderHIcoder
提出日時 2024-12-16 23:51:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 482 ms / 1,500 ms
コード長 775 bytes
コンパイル時間 1,176 ms
コンパイル使用メモリ 118,448 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-12-16 23:53:37
合計ジャッジ時間 7,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 459 ms
7,936 KB
testcase_02 AC 482 ms
7,936 KB
testcase_03 AC 481 ms
8,064 KB
testcase_04 AC 293 ms
6,820 KB
testcase_05 AC 312 ms
6,816 KB
testcase_06 AC 203 ms
6,820 KB
testcase_07 AC 168 ms
6,820 KB
testcase_08 AC 262 ms
6,820 KB
testcase_09 AC 79 ms
6,820 KB
testcase_10 AC 90 ms
6,820 KB
testcase_11 AC 85 ms
6,820 KB
testcase_12 AC 84 ms
6,820 KB
testcase_13 AC 88 ms
6,820 KB
testcase_14 AC 113 ms
6,816 KB
testcase_15 AC 124 ms
6,820 KB
testcase_16 AC 65 ms
6,820 KB
testcase_17 AC 105 ms
6,820 KB
testcase_18 AC 119 ms
6,820 KB
testcase_19 AC 15 ms
6,820 KB
testcase_20 AC 18 ms
6,816 KB
testcase_21 AC 5 ms
6,816 KB
testcase_22 AC 8 ms
6,816 KB
testcase_23 AC 11 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 4 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 3 ms
6,820 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 3 ms
6,816 KB
testcase_33 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;
const int MAXN=3*1000000;

ll gcd(ll x,ll y){
    if(x<y) swap(x,y);
    //x>=y
    return y==0?x:gcd(y,x%y);
}

int main(){
    int N;
    cin>>N;
    vector<ll> A(N);
    for(int i=0;i<N;i++){
        cin>>A[i];
    }
    vector<ll> ans(N+1);
    for(int i=0;i<N;i++){
        ans[i+1]=gcd(ans[i],abs(A[i]-A[0]));
    } 
    for(int i=1;i<=N;i++){
        cout<<ans[i]<<endl;
    }

}
0