結果
| 問題 | No.2821 A[i] ← 2A[j] - A[i] |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-05 17:21:30 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 33 ms / 1,500 ms |
| + 62µs | |
| コード長 | 407 bytes |
| 記録 | |
| コンパイル時間 | 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 |
ソースコード
#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); }