結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | nebukuro09 |
提出日時 | 2021-11-05 22:34:43 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 788 bytes |
コンパイル時間 | 832 ms |
コンパイル使用メモリ | 130,016 KB |
実行使用メモリ | 29,484 KB |
最終ジャッジ日時 | 2024-06-22 13:06:55 |
合計ジャッジ時間 | 9,835 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 845 ms
25,228 KB |
testcase_01 | AC | 19 ms
15,916 KB |
testcase_02 | AC | 19 ms
14,532 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 20 ms
15,100 KB |
testcase_09 | AC | 20 ms
15,976 KB |
testcase_10 | WA | - |
testcase_11 | AC | 18 ms
14,868 KB |
testcase_12 | AC | 20 ms
15,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 304 ms
26,736 KB |
testcase_19 | AC | 736 ms
29,360 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 712 ms
24,348 KB |
testcase_23 | AC | 81 ms
19,044 KB |
testcase_24 | AC | 81 ms
19,572 KB |
testcase_25 | WA | - |
ソースコード
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; foreach (k; 0..N) { while (idx + 1 < X.length && X[idx+1][1] >= N - k) ++idx; X[idx][0].writeln; } }