結果
問題 | No.2821 A[i] ← 2A[j] - A[i] |
ユーザー |
![]() |
提出日時 | 2024-07-26 21:39:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 588 ms / 1,500 ms |
コード長 | 431 bytes |
コンパイル時間 | 8,277 ms |
コンパイル使用メモリ | 249,624 KB |
最終ジャッジ日時 | 2025-02-23 18:27:57 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 33 |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 1000000000000000001 int main(){ long long ans = 0; int n; cin>>n; long long d; rep(i,n){ long long c; cin>>c; if(i!=0)ans = gcd(ans,abs(c-d)); cout<<ans<<endl; d = c; } return 0; }