結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー tamatotamato
提出日時 2021-11-05 22:27:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 891 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 121,080 KB
最終ジャッジ日時 2024-11-08 04:44:57
合計ジャッジ時間 12,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 246 ms
105,472 KB
testcase_01 AC 174 ms
83,456 KB
testcase_02 AC 176 ms
83,584 KB
testcase_03 AC 245 ms
83,968 KB
testcase_04 AC 246 ms
83,584 KB
testcase_05 AC 243 ms
83,968 KB
testcase_06 AC 246 ms
83,584 KB
testcase_07 AC 248 ms
83,584 KB
testcase_08 AC 215 ms
84,096 KB
testcase_09 AC 191 ms
83,712 KB
testcase_10 AC 244 ms
83,712 KB
testcase_11 AC 173 ms
83,328 KB
testcase_12 AC 174 ms
83,840 KB
testcase_13 AC 891 ms
117,296 KB
testcase_14 AC 861 ms
117,168 KB
testcase_15 AC 857 ms
117,176 KB
testcase_16 AC 856 ms
117,300 KB
testcase_17 AC 875 ms
117,092 KB
testcase_18 AC 758 ms
120,764 KB
testcase_19 AC 733 ms
121,080 KB
testcase_20 AC 315 ms
104,448 KB
testcase_21 AC 316 ms
104,320 KB
testcase_22 AC 247 ms
105,344 KB
testcase_23 AC 235 ms
111,488 KB
testcase_24 AC 241 ms
111,616 KB
testcase_25 AC 738 ms
120,632 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)

    cnt = [N] * (NN + 1)
    for i in range(101, NN+1):
        for x in range(1, NN+1):
            if i * x > NN:
                break
            if i * x in C:
                k = C[i * x]
                cnt[i] -= k

    for a in C:
        k = C[a]
        for d in range(1, 101):
            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