結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-03 00:48:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 1,319 ms
コンパイル使用メモリ 110,128 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-06-09 02:55:06
合計ジャッジ時間 9,470 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 367 ms
20,372 KB
testcase_01 AC 41 ms
18,816 KB
testcase_02 AC 41 ms
18,796 KB
testcase_03 AC 41 ms
18,880 KB
testcase_04 AC 42 ms
18,816 KB
testcase_05 AC 41 ms
18,816 KB
testcase_06 AC 42 ms
18,816 KB
testcase_07 AC 42 ms
18,852 KB
testcase_08 AC 44 ms
18,816 KB
testcase_09 AC 41 ms
18,816 KB
testcase_10 AC 42 ms
18,892 KB
testcase_11 AC 42 ms
18,812 KB
testcase_12 AC 45 ms
18,816 KB
testcase_13 AC 392 ms
20,352 KB
testcase_14 AC 387 ms
20,352 KB
testcase_15 AC 395 ms
20,352 KB
testcase_16 AC 390 ms
20,480 KB
testcase_17 AC 384 ms
20,480 KB
testcase_18 AC 369 ms
20,352 KB
testcase_19 AC 371 ms
20,352 KB
testcase_20 AC 353 ms
20,352 KB
testcase_21 AC 360 ms
20,352 KB
testcase_22 AC 370 ms
20,436 KB
testcase_23 AC 335 ms
20,352 KB
testcase_24 AC 332 ms
20,352 KB
testcase_25 AC 359 ms
20,352 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;

int main(){

    ll N, A;
    cin >> N;
    vector<ll> cnt(1e6+1), sm(1e6+1);
    for (int i=0; i<N; i++){
        cin >> A;
        cnt[A]++;
    }
    for (int i=1; i<=1e6; i++){
        for (int j=i; j<=1e6; j+=i) sm[i] += cnt[j];
    }
    vector<ll> ans(N+1);
    for (int i=1; i<=1e6; i++){
        ans[max(N-sm[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