結果
問題 | No.2821 A[i] ← 2A[j] - A[i] |
ユーザー | hiromi_ayase |
提出日時 | 2024-07-26 23:20:27 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 429 ms / 1,500 ms |
コード長 | 703 bytes |
コンパイル時間 | 5,885 ms |
コンパイル使用メモリ | 309,184 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-07-26 23:20:39 |
合計ジャッジ時間 | 11,062 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 33 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using i32 = int; using u32 = unsigned int; using i64 = long long; using u64 = unsigned long long; #define FAST_IO \ ios::sync_with_stdio(false); \ cin.tie(0); const i64 INF = 1001001001001001001; using Modint = atcoder::static_modint<998244353>; int main() { FAST_IO auto ans = 0LL; int N; cin >> N; vector<i64> A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } vector<i64> B(N - 1); for (int i = 0; i < N - 1; i++) { B[i] = abs(A[i + 1] - A[i]); } cout << 0 << endl; i64 cur = B[0]; for (int i = 0; i < N - 1; i++) { cur = gcd(cur, B[i]); cout << cur << endl; } }