結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー googol_S0googol_S0
提出日時 2021-11-05 21:28:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 122,368 KB
最終ジャッジ日時 2024-11-08 04:27:55
合計ジャッジ時間 8,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
122,240 KB
testcase_01 AC 195 ms
91,136 KB
testcase_02 AC 201 ms
91,136 KB
testcase_03 AC 203 ms
90,880 KB
testcase_04 AC 202 ms
90,752 KB
testcase_05 AC 206 ms
90,880 KB
testcase_06 AC 196 ms
91,136 KB
testcase_07 AC 193 ms
90,880 KB
testcase_08 AC 191 ms
91,136 KB
testcase_09 AC 195 ms
90,752 KB
testcase_10 AC 208 ms
91,136 KB
testcase_11 AC 202 ms
91,264 KB
testcase_12 AC 209 ms
91,008 KB
testcase_13 AC 257 ms
122,368 KB
testcase_14 AC 251 ms
122,112 KB
testcase_15 AC 255 ms
122,240 KB
testcase_16 AC 265 ms
121,984 KB
testcase_17 AC 252 ms
122,112 KB
testcase_18 AC 254 ms
121,600 KB
testcase_19 AC 253 ms
121,984 KB
testcase_20 AC 249 ms
120,832 KB
testcase_21 AC 252 ms
120,576 KB
testcase_22 AC 256 ms
122,240 KB
testcase_23 AC 242 ms
119,424 KB
testcase_24 AC 238 ms
119,296 KB
testcase_25 AC 258 ms
121,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
M=10**6+3
C=[0]*M
for i in range(N):
  C[A[i]]+=1
X=[0]*M
for i in range(1,M):
  for j in range(i,M,i):
    X[i]+=C[j]
ANS=[0]*(N+1)
for i in range(M):
  ANS[X[i]]=max(ANS[X[i]],i)
for i in range(N-1,-1,-1):
  ANS[i]=max(ANS[i],ANS[i+1])
for i in range(N):
  print(ANS[N-i])
0