結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー vwxyzvwxyz
提出日時 2023-03-20 03:22:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,206 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 120,748 KB
最終ジャッジ日時 2024-09-18 13:59:37
合計ジャッジ時間 14,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
105,216 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 247 ms
83,968 KB
testcase_03 AC 339 ms
83,840 KB
testcase_04 AC 331 ms
83,840 KB
testcase_05 AC 327 ms
83,980 KB
testcase_06 AC 332 ms
83,840 KB
testcase_07 AC 338 ms
83,840 KB
testcase_08 AC 43 ms
54,016 KB
testcase_09 AC 204 ms
81,784 KB
testcase_10 AC 245 ms
81,664 KB
testcase_11 AC 42 ms
53,888 KB
testcase_12 AC 44 ms
53,504 KB
testcase_13 AC 1,009 ms
117,236 KB
testcase_14 AC 1,068 ms
117,480 KB
testcase_15 AC 1,139 ms
117,224 KB
testcase_16 AC 1,206 ms
117,464 KB
testcase_17 AC 1,016 ms
117,236 KB
testcase_18 AC 259 ms
120,584 KB
testcase_19 AC 592 ms
120,748 KB
testcase_20 AC 315 ms
104,320 KB
testcase_21 AC 326 ms
104,320 KB
testcase_22 AC 272 ms
105,428 KB
testcase_23 AC 125 ms
109,696 KB
testcase_24 AC 324 ms
111,616 KB
testcase_25 AC 686 ms
120,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import Counter

N=int(readline())
A=list(map(int,readline().split()))
C=Counter(A)
M=max(A)
cnt=[N]*(M+1)
for g in range(1,M+1):
    for a in range(g,M+1,g):
        cnt[g]-=C[a]
ans_lst=[0]*N
for i in range(1,M+1):
    if cnt[i]<N:
        ans_lst[cnt[i]]=max(ans_lst[cnt[i]],i)
for i in range(1,N):
    ans_lst[i]=max(ans_lst[i],ans_lst[i-1])
print(*ans_lst,sep="\n")
0