結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー 👑 KazunKazun
提出日時 2021-11-05 23:29:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 121,088 KB
最終ジャッジ日時 2024-11-08 04:52:43
合計ジャッジ時間 5,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
120,704 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 118 ms
81,408 KB
testcase_03 AC 121 ms
80,896 KB
testcase_04 AC 123 ms
81,024 KB
testcase_05 AC 120 ms
81,024 KB
testcase_06 AC 121 ms
80,896 KB
testcase_07 AC 121 ms
80,896 KB
testcase_08 AC 42 ms
51,456 KB
testcase_09 AC 96 ms
75,008 KB
testcase_10 AC 97 ms
75,392 KB
testcase_11 AC 42 ms
51,712 KB
testcase_12 AC 43 ms
51,712 KB
testcase_13 AC 190 ms
121,088 KB
testcase_14 AC 193 ms
120,960 KB
testcase_15 AC 189 ms
120,448 KB
testcase_16 AC 189 ms
120,448 KB
testcase_17 AC 185 ms
120,960 KB
testcase_18 AC 126 ms
108,032 KB
testcase_19 AC 185 ms
120,448 KB
testcase_20 AC 159 ms
115,584 KB
testcase_21 AC 161 ms
115,328 KB
testcase_22 AC 166 ms
116,224 KB
testcase_23 AC 107 ms
106,752 KB
testcase_24 AC 177 ms
119,040 KB
testcase_25 AC 184 ms
120,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Multiple_Zeta_Transform(A):
    """ A の倍数を走るにおける Zeta 変換を行う.

    ※ A[0] の値は無視される.
    """

    N=len(A)-1
    S=[1]*(N+1)

    for p in range(2,N+1):
        if S[p]:
            for k in range(N//p,0,-1):
                S[k*p]=0
                A[k]+=A[k*p]
#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

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

alpha=max(A)
T=[0]*(alpha+1)

for a in A:
    T[a]+=1

Multiple_Zeta_Transform(T)

X=[0]*(N+1)
for a in range(alpha+1):
    X[T[a]]=a

for i in range(N-1,0,-1):
    X[i]=max(X[i],X[i+1])

write("\n".join(map(str,X[:0:-1])))
0