結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー ぷらぷら
提出日時 2021-11-05 21:23:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,152 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 201,588 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-11-08 04:27:15
合計ジャッジ時間 14,682 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,152 ms
7,936 KB
testcase_01 AC 6 ms
7,168 KB
testcase_02 AC 5 ms
7,168 KB
testcase_03 AC 6 ms
7,168 KB
testcase_04 AC 6 ms
7,168 KB
testcase_05 AC 6 ms
7,168 KB
testcase_06 AC 6 ms
7,168 KB
testcase_07 AC 6 ms
7,296 KB
testcase_08 AC 6 ms
7,296 KB
testcase_09 AC 6 ms
7,296 KB
testcase_10 AC 6 ms
7,296 KB
testcase_11 AC 6 ms
7,168 KB
testcase_12 AC 6 ms
7,168 KB
testcase_13 AC 819 ms
8,064 KB
testcase_14 AC 816 ms
8,064 KB
testcase_15 AC 810 ms
7,936 KB
testcase_16 AC 811 ms
7,936 KB
testcase_17 AC 815 ms
7,936 KB
testcase_18 AC 549 ms
8,064 KB
testcase_19 AC 997 ms
8,064 KB
testcase_20 AC 398 ms
8,064 KB
testcase_21 AC 397 ms
7,936 KB
testcase_22 AC 1,032 ms
7,936 KB
testcase_23 AC 294 ms
8,064 KB
testcase_24 AC 296 ms
8,064 KB
testcase_25 AC 743 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    cin >> N;
    vector<int>tmp(1000001);
    for(int i = 0; i < N; i++) {
        int A;
        cin >> A;
        for(int j = 1; j*j <= A; j++) {
            if(A%j == 0) {
                tmp[j]++;
                if(j*j != A) {
                    tmp[A/j]++;
                }
            }
        }
    }
    vector<int>ans(N+1);
    for(int i = 1; i <= 1000000; i++) {
        ans[N-tmp[i]] = 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;
    }
}
0