結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | mkawa2 |
提出日時 | 2021-11-05 22:26:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,312 bytes |
コンパイル時間 | 2,175 ms |
コンパイル使用メモリ | 204,680 KB |
実行使用メモリ | 8,764 KB |
最終ジャッジ日時 | 2024-11-06 13:24:58 |
合計ジャッジ時間 | 14,775 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 5 ms
7,016 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 273 ms
8,732 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
// #include <atcoder/all> // using namespace atcoder; #include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) #define all(x) (x).begin(), (x).end() #define popcnt(x) __builtin_popcount(x) using ll = long long; using pii = pair<int, int>; using pll = pair<ll, ll>; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vector<int>>; using vvll = vector<vector<ll>>; const int inf = 1e9; const ll lim = 1e18; int dx[] = {1, 1, 0, -1, -1, -1, 0, 1}; int dy[] = {0, 1, 1, 1, 0, -1, -1, -1}; vi factors(int a) { vi res; for (int f = 1; f * f <= a; f++) { if (a % f == 0) { res.push_back(f); if (a / f != a) res.push_back(a / f); } } return res; } int main() { cin.tie(0); ios::sync_with_stdio(false); int const mx = 1000005; // vvi ff(mx, vi(1, 1)); // for (int f = 2; f < mx; f++) { // for (int i = f; i < mx; i += f) ff[i].push_back(f); // } int n; cin >> n; vi a(n); rep(i, n) cin >> a[i]; vi cnt(mx); rep(i, n) for (auto f : factors(a[i])) cnt[f]++; vi ans(n); int r = n; for (int f = mx - 1; f > 0; f--) { if (r == 0) break; if (n - cnt[f] < r) { for (int i = n - cnt[f]; i < r; i++) ans[i] = f; r = n - cnt[f]; } } rep(i, n) cout << ans[i] << endl; return 0; }