結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー ああいいああいい
提出日時 2022-03-16 17:54:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 122,240 KB
最終ジャッジ日時 2024-11-08 05:21:39
合計ジャッジ時間 7,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
121,856 KB
testcase_01 AC 157 ms
84,992 KB
testcase_02 AC 156 ms
84,992 KB
testcase_03 AC 152 ms
85,248 KB
testcase_04 AC 154 ms
84,864 KB
testcase_05 AC 148 ms
85,120 KB
testcase_06 AC 154 ms
85,120 KB
testcase_07 AC 157 ms
85,504 KB
testcase_08 AC 149 ms
85,632 KB
testcase_09 AC 156 ms
85,120 KB
testcase_10 AC 153 ms
85,504 KB
testcase_11 AC 157 ms
84,736 KB
testcase_12 AC 149 ms
85,504 KB
testcase_13 AC 227 ms
122,112 KB
testcase_14 AC 228 ms
121,856 KB
testcase_15 AC 229 ms
121,856 KB
testcase_16 AC 226 ms
122,240 KB
testcase_17 AC 233 ms
122,112 KB
testcase_18 AC 231 ms
121,728 KB
testcase_19 AC 226 ms
121,984 KB
testcase_20 AC 221 ms
120,832 KB
testcase_21 AC 226 ms
120,832 KB
testcase_22 AC 228 ms
121,856 KB
testcase_23 AC 226 ms
119,296 KB
testcase_24 AC 216 ms
119,168 KB
testcase_25 AC 231 ms
121,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
C = 10 ** 6 + 1
dat = [0] * C
for a in A:
    dat[a] += 1
era = [0] * C
for i in range(2,C):
    if era[i] == 0:
        for j in range(2 * i,C,i):
            era[j] = 1
        for j in range((C-1) // i,0,-1):
            dat[j] += dat[i * j]
Max = [0] * (N + 1)
for i in range(1,C):
    Max[dat[i]] = i
for i in range(N,0,-1):
    Max[i-1] = max(Max[i-1],Max[i])
for k in range(N):
    print(Max[N - k])
#print(dat[:30])
0