結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー MineMine
提出日時 2021-11-24 20:49:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 695 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 114,560 KB
最終ジャッジ日時 2024-04-25 17:53:54
合計ジャッジ時間 11,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
106,616 KB
testcase_01 AC 194 ms
76,268 KB
testcase_02 AC 191 ms
76,112 KB
testcase_03 AC 281 ms
76,144 KB
testcase_04 AC 277 ms
76,312 KB
testcase_05 AC 275 ms
75,980 KB
testcase_06 AC 278 ms
76,132 KB
testcase_07 AC 275 ms
76,128 KB
testcase_08 AC 242 ms
76,012 KB
testcase_09 AC 210 ms
76,036 KB
testcase_10 AC 280 ms
76,324 KB
testcase_11 AC 193 ms
76,200 KB
testcase_12 AC 195 ms
76,124 KB
testcase_13 AC 648 ms
110,920 KB
testcase_14 AC 623 ms
111,124 KB
testcase_15 AC 695 ms
111,064 KB
testcase_16 AC 683 ms
111,008 KB
testcase_17 AC 634 ms
111,256 KB
testcase_18 AC 475 ms
113,876 KB
testcase_19 AC 420 ms
114,560 KB
testcase_20 AC 341 ms
105,220 KB
testcase_21 AC 333 ms
105,336 KB
testcase_22 AC 252 ms
106,780 KB
testcase_23 AC 239 ms
105,832 KB
testcase_24 AC 245 ms
105,516 KB
testcase_25 AC 456 ms
113,968 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