結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー nebukuro09nebukuro09
提出日時 2021-11-05 23:24:26
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 933 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 129,844 KB
実行使用メモリ 29,880 KB
最終ジャッジ日時 2024-06-22 13:07:50
合計ジャッジ時間 10,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 933 ms
26,372 KB
testcase_01 AC 19 ms
14,760 KB
testcase_02 AC 19 ms
15,596 KB
testcase_03 AC 19 ms
15,444 KB
testcase_04 AC 20 ms
15,176 KB
testcase_05 AC 19 ms
16,008 KB
testcase_06 AC 19 ms
16,008 KB
testcase_07 AC 19 ms
16,052 KB
testcase_08 AC 18 ms
16,764 KB
testcase_09 AC 19 ms
14,668 KB
testcase_10 AC 19 ms
14,124 KB
testcase_11 AC 19 ms
15,872 KB
testcase_12 AC 20 ms
15,748 KB
testcase_13 AC 615 ms
29,192 KB
testcase_14 AC 606 ms
29,624 KB
testcase_15 AC 600 ms
28,316 KB
testcase_16 AC 597 ms
28,032 KB
testcase_17 AC 612 ms
27,484 KB
testcase_18 AC 309 ms
26,604 KB
testcase_19 AC 734 ms
29,880 KB
testcase_20 AC 177 ms
19,828 KB
testcase_21 AC 174 ms
20,428 KB
testcase_22 AC 837 ms
26,452 KB
testcase_23 AC 83 ms
19,056 KB
testcase_24 AC 83 ms
20,180 KB
testcase_25 AC 502 ms
27,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;


void main() {
    auto N = readln.chomp.to!int;
    auto A = readln.split.map!(to!int).array;

    auto cnt = new int[](10^^6+1);

    foreach (a; A) {
        for (int i = 1; i * i <= a; ++i) if (a % i == 0) {
            cnt[i] += 1;
            if (i * i != a) cnt[a/i] += 1;
        }
    }

    auto X = iota(10^^6+1).map!(i => tuple(i, cnt[i])).array;
    X = X.filter!(x => x[1] != 0).array;
    X.sort!((a, b) => a[1] == b[1] ? a[0] < b[0] : a[1] > b[1]);

    int idx = 0;
    int ans = 1;

    foreach (k; 0..N) {
        while (idx + 1 < X.length && X[idx+1][1] >= N - k) ++idx, ans = max(ans, X[idx][0]);
        ans.writeln;
    }
}
0