結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー irumo8202irumo8202
提出日時 2022-01-29 14:18:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 683 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 216,048 KB
最終ジャッジ日時 2025-01-02 01:03:07
合計ジャッジ時間 34,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 38 ms
61,240 KB
testcase_02 AC 39 ms
216,048 KB
testcase_03 AC 49 ms
71,452 KB
testcase_04 AC 46 ms
170,544 KB
testcase_05 AC 46 ms
70,204 KB
testcase_06 AC 45 ms
62,964 KB
testcase_07 AC 47 ms
62,944 KB
testcase_08 AC 40 ms
55,556 KB
testcase_09 AC 42 ms
63,048 KB
testcase_10 AC 46 ms
63,836 KB
testcase_11 AC 37 ms
54,632 KB
testcase_12 AC 37 ms
55,060 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,594 ms
133,308 KB
testcase_19 TLE -
testcase_20 AC 575 ms
106,024 KB
testcase_21 AC 602 ms
105,996 KB
testcase_22 TLE -
testcase_23 AC 140 ms
104,856 KB
testcase_24 AC 131 ms
104,580 KB
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
A = list(map(int, input().split()))


def make_divisors(n):
    lower_divisors, upper_divisors = [], []
    i = 1
    while i * i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n // i)
        i += 1
    return lower_divisors + upper_divisors[::-1]


cnt = defaultdict(int)
for a in A:
    divs_a = make_divisors(a)
    for d in divs_a:
        cnt[d] += 1

ans = [0] * N
for g, c in sorted(cnt.items(), key=lambda x: -x[1]):
    ans[N - c] = max(ans[N - c], g)

for i in range(1, N):
    ans[i] = max(ans[i], ans[i - 1])

print(*ans, sep="\n")
0