結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー MineMine
提出日時 2021-11-24 20:49:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,051 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 114,568 KB
最終ジャッジ日時 2024-11-08 05:16:15
合計ジャッジ時間 14,149 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
106,368 KB
testcase_01 AC 223 ms
75,904 KB
testcase_02 AC 221 ms
75,904 KB
testcase_03 AC 309 ms
75,904 KB
testcase_04 AC 309 ms
76,032 KB
testcase_05 AC 319 ms
76,160 KB
testcase_06 AC 314 ms
76,032 KB
testcase_07 AC 317 ms
76,160 KB
testcase_08 AC 279 ms
76,032 KB
testcase_09 AC 244 ms
75,904 KB
testcase_10 AC 309 ms
76,160 KB
testcase_11 AC 223 ms
75,776 KB
testcase_12 AC 225 ms
75,904 KB
testcase_13 AC 946 ms
110,936 KB
testcase_14 AC 964 ms
111,064 KB
testcase_15 AC 1,051 ms
110,936 KB
testcase_16 AC 1,021 ms
110,936 KB
testcase_17 AC 975 ms
111,056 KB
testcase_18 AC 619 ms
113,864 KB
testcase_19 AC 605 ms
114,568 KB
testcase_20 AC 384 ms
105,216 KB
testcase_21 AC 386 ms
105,088 KB
testcase_22 AC 284 ms
106,492 KB
testcase_23 AC 279 ms
105,600 KB
testcase_24 AC 291 ms
105,472 KB
testcase_25 AC 638 ms
113,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
a = list(map(int, input().split()))
c = Counter(a)
anss = [0]*(n+1)

for i in range(1, 10**6+1):
    num = n
    for j in range(i, 10**6+1, i):
        num -= c[j]
    anss[num] = max(anss[num], i)

ans = anss[0]
for i in range(n):
    ans = max(ans, anss[i])
    print(ans)
0