結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-03 00:37:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 795 bytes
コンパイル時間 1,341 ms
コンパイル使用メモリ 108,520 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-09 02:48:51
合計ジャッジ時間 26,348 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 8 ms
11,008 KB
testcase_02 AC 7 ms
11,008 KB
testcase_03 AC 7 ms
11,048 KB
testcase_04 AC 8 ms
11,008 KB
testcase_05 AC 7 ms
11,008 KB
testcase_06 AC 7 ms
11,020 KB
testcase_07 AC 8 ms
11,008 KB
testcase_08 AC 7 ms
11,100 KB
testcase_09 AC 7 ms
11,004 KB
testcase_10 AC 7 ms
11,008 KB
testcase_11 AC 6 ms
11,008 KB
testcase_12 AC 7 ms
11,008 KB
testcase_13 AC 1,758 ms
12,620 KB
testcase_14 AC 1,762 ms
12,544 KB
testcase_15 AC 1,778 ms
12,532 KB
testcase_16 AC 1,758 ms
12,544 KB
testcase_17 AC 1,764 ms
12,544 KB
testcase_18 AC 956 ms
12,672 KB
testcase_19 TLE -
testcase_20 AC 476 ms
12,544 KB
testcase_21 AC 468 ms
12,544 KB
testcase_22 TLE -
testcase_23 AC 290 ms
12,544 KB
testcase_24 AC 292 ms
12,544 KB
testcase_25 AC 1,562 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

vector<ll> cnt(1e6+1);

void all_factor(ll n){
    for (ll i = 1; i*i <= n; i++){
        if (n % i == 0){
            cnt[i]++;
            if (i*i != n) cnt[n/i]++;
        }
    }
}

int main(){

    ll N, A;
    cin >> N;
    for (int i=0; i<N; i++){
        cin >> A;
        all_factor(A);
    }
    vector<ll> ans(N+1);
    for (int i=1; i<=1e6; i++){
        ans[max(N-cnt[i], 0LL)] = i;
    }

    for (int i=0; i<N; i++) ans[i+1] = max(ans[i+1], ans[i]);
    for (int i=0; i<N; i++) cout << ans[i] << endl;

    return 0;
}
0