結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-05 21:36:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,784 KB
最終ジャッジ日時 2024-11-08 04:30:47
合計ジャッジ時間 10,370 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
102,656 KB
testcase_01 AC 323 ms
67,584 KB
testcase_02 AC 337 ms
67,456 KB
testcase_03 AC 172 ms
83,712 KB
testcase_04 AC 172 ms
83,200 KB
testcase_05 AC 367 ms
67,840 KB
testcase_06 AC 177 ms
83,456 KB
testcase_07 AC 170 ms
83,456 KB
testcase_08 AC 337 ms
68,608 KB
testcase_09 AC 171 ms
83,584 KB
testcase_10 AC 176 ms
83,456 KB
testcase_11 AC 313 ms
67,328 KB
testcase_12 AC 330 ms
67,968 KB
testcase_13 AC 439 ms
102,144 KB
testcase_14 AC 391 ms
102,400 KB
testcase_15 AC 467 ms
102,400 KB
testcase_16 AC 408 ms
102,784 KB
testcase_17 AC 432 ms
102,400 KB
testcase_18 AC 225 ms
101,632 KB
testcase_19 AC 483 ms
102,272 KB
testcase_20 AC 229 ms
100,736 KB
testcase_21 AC 230 ms
100,864 KB
testcase_22 AC 235 ms
102,272 KB
testcase_23 AC 475 ms
99,968 KB
testcase_24 AC 473 ms
99,840 KB
testcase_25 AC 468 ms
101,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
M = 10**6+5
L = [0]*M
for a in map(int,input().split()):
    L[a] += 1

ans = [1]*(n+1)
for i in range(2,M)[::-1]:

    count = 0
    for j in range(i,M,i):
        count += L[j]
    ans[n-count] = max(ans[n-count],i)

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