結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー HydruHydru
提出日時 2021-11-06 12:37:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 122,624 KB
最終ジャッジ日時 2024-11-08 04:58:26
合計ジャッジ時間 6,008 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
122,368 KB
testcase_01 AC 45 ms
51,840 KB
testcase_02 AC 135 ms
81,152 KB
testcase_03 AC 139 ms
81,152 KB
testcase_04 AC 141 ms
81,152 KB
testcase_05 AC 140 ms
81,024 KB
testcase_06 AC 139 ms
80,896 KB
testcase_07 AC 142 ms
80,896 KB
testcase_08 AC 45 ms
51,840 KB
testcase_09 AC 107 ms
75,008 KB
testcase_10 AC 104 ms
75,776 KB
testcase_11 AC 42 ms
51,968 KB
testcase_12 AC 44 ms
51,584 KB
testcase_13 AC 197 ms
122,240 KB
testcase_14 AC 205 ms
122,112 KB
testcase_15 AC 214 ms
122,368 KB
testcase_16 AC 208 ms
122,624 KB
testcase_17 AC 207 ms
122,112 KB
testcase_18 AC 132 ms
109,184 KB
testcase_19 AC 197 ms
122,368 KB
testcase_20 AC 174 ms
116,352 KB
testcase_21 AC 174 ms
116,480 KB
testcase_22 AC 180 ms
117,760 KB
testcase_23 AC 111 ms
107,392 KB
testcase_24 AC 196 ms
119,168 KB
testcase_25 AC 200 ms
121,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#Z-Transform
def Multiple_Zeta_Transform(A):
    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]

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])

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