結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー tamatotamato
提出日時 2021-11-05 22:24:53
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 869 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 174,240 KB
最終ジャッジ日時 2024-11-06 13:21:42
合計ジャッジ時間 22,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
126,320 KB
testcase_01 AC 204 ms
120,092 KB
testcase_02 AC 208 ms
120,400 KB
testcase_03 AC 275 ms
120,692 KB
testcase_04 AC 275 ms
120,480 KB
testcase_05 AC 274 ms
120,516 KB
testcase_06 AC 282 ms
120,548 KB
testcase_07 AC 294 ms
120,388 KB
testcase_08 AC 254 ms
120,332 KB
testcase_09 AC 226 ms
120,492 KB
testcase_10 AC 273 ms
120,412 KB
testcase_11 AC 206 ms
120,364 KB
testcase_12 AC 206 ms
120,048 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,973 ms
165,796 KB
testcase_16 TLE -
testcase_17 AC 1,974 ms
165,396 KB
testcase_18 AC 1,484 ms
162,908 KB
testcase_19 AC 1,647 ms
174,240 KB
testcase_20 AC 351 ms
127,208 KB
testcase_21 AC 352 ms
127,280 KB
testcase_22 AC 283 ms
126,568 KB
testcase_23 AC 270 ms
127,676 KB
testcase_24 AC 278 ms
127,548 KB
testcase_25 AC 1,563 ms
167,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
NN = 10 ** 6


def main():
    import sys
    from collections import Counter
    input = sys.stdin.readline

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

    div = [[] for _ in range(NN + 1)]
    for i in range(201, NN+1):
        for x in range(1, NN+1):
            if i * x > NN:
                break
            if i * x in C:
                div[i*x].append(i)

    cnt = [N] * (NN+1)
    for a in C:
        k = C[a]
        for d in div[a]:
            cnt[d] -= k
        for d in range(1, 201):
            if a % d == 0:
                cnt[d] -= k

    ans = [1] * (N+1)
    for x in range(1, NN+1):
        k = cnt[x]
        ans[k] = x
    for i in range(1, N+1):
        ans[i] = max(ans[i], ans[i-1])
    for i in range(N):
        print(ans[i])


if __name__ == '__main__':
    main()
0