結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー rlangevinrlangevin
提出日時 2023-02-06 01:43:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,984 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 241,948 KB
最終ジャッジ日時 2024-07-04 10:14:16
合計ジャッジ時間 23,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 407 ms
168,988 KB
testcase_01 AC 325 ms
166,144 KB
testcase_02 AC 348 ms
166,340 KB
testcase_03 AC 422 ms
166,784 KB
testcase_04 AC 421 ms
166,528 KB
testcase_05 AC 417 ms
166,272 KB
testcase_06 AC 424 ms
166,400 KB
testcase_07 AC 428 ms
166,656 KB
testcase_08 AC 377 ms
166,400 KB
testcase_09 AC 357 ms
166,144 KB
testcase_10 AC 414 ms
166,592 KB
testcase_11 AC 323 ms
166,144 KB
testcase_12 AC 320 ms
166,144 KB
testcase_13 AC 1,956 ms
230,584 KB
testcase_14 AC 1,941 ms
230,436 KB
testcase_15 AC 1,896 ms
230,444 KB
testcase_16 AC 1,970 ms
230,960 KB
testcase_17 AC 1,984 ms
230,196 KB
testcase_18 AC 1,192 ms
229,276 KB
testcase_19 AC 1,353 ms
241,948 KB
testcase_20 AC 483 ms
169,268 KB
testcase_21 AC 482 ms
168,760 KB
testcase_22 AC 411 ms
168,540 KB
testcase_23 AC 377 ms
166,972 KB
testcase_24 AC 401 ms
166,952 KB
testcase_25 AC 1,324 ms
232,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def enum_div(M):
    L = [[1] for i in range(M + 1)]
    for i in range(2, M + 1):
        for j in range(i, M + 1, i):
            if j not in A:
                continue
            L[j].append(i)
    return L

N = int(input())
A = list(map(int, input().split()))
D = defaultdict(int)
for a in A:
    D[a] += 1
A = set(A)

M = 1010101
DD = enum_div(M)
L = [0] * M

for k, v in D.items():
    for j in DD[k]:
        L[j] += v
            
for i in range(M-2, -1, -1):
    L[i] = max(L[i], L[i + 1])
    
now = 1
for i in range(N):
    while L[now] + i >= N and L[now + 1] + i >= N:
        now += 1
    print(now)
0