結果
| 問題 |
No.2570 最大最大公約数
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-12-06 02:00:51 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,694 bytes |
| コンパイル時間 | 1,595 ms |
| コンパイル使用メモリ | 133,512 KB |
| 最終ジャッジ日時 | 2025-02-18 08:13:38 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 12 WA * 16 |
ソースコード
/* 💕💕💕💕💕
💗💗💗💗💗
/)/)
( . .)
( づ💗
💗💗💗 💗💗💗
💗💗💗💗💗💗💗💗💗
💗💗💗💗💗💗💗💗💗
💗💗💗💗💗💗💗
💗💗💗💗💗
💗💗💗
💗
*/
#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <chrono>
#include <cmath>
#include <complex>
#include <cstdint>
#include <cstring>
#include <ctime>
#include <deque>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <vector>
void solve() {
int n, k;
std::cin >> n >> k;
std::vector<long long> a(n);
for (auto& i : a) std::cin >> i;
auto prime_factor = [](long long x) {
std::vector<long long> res;
for (long long i = 2; i * i <= x; ++i) {
if (x % i == 0) {
res.push_back(i);
while (x % i == 0) x /= i;
}
}
if (x != 1) res.push_back(x);
return res;
};
std::set<long long, std::greater<long long>> c;
for (int i = 0; i < n; i++) {
auto p = prime_factor(a[i]);
for (auto j : p) {
c.insert(j);
}
}
for (int x = 2; x <= 10; x++) {
c.insert(x);
}
for (auto g : c) {
int cnt = 0;
for (auto x : a) {
auto distance = std::min(std::abs(g - x % g), x % g);
cnt += distance;
}
if (cnt <= k) {
std::cout << g << '\n';
return;
}
}
std::cout << 1 << '\n';
}
int main() {
int t = 1;
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
// std::cin >> t;
while (t--) solve();
return 0;
}