結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-06 00:21:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 152,704 KB
最終ジャッジ日時 2024-11-08 04:55:52
合計ジャッジ時間 10,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 413 ms
152,192 KB
testcase_01 AC 49 ms
53,120 KB
testcase_02 AC 359 ms
118,656 KB
testcase_03 AC 342 ms
119,040 KB
testcase_04 AC 348 ms
118,784 KB
testcase_05 AC 355 ms
118,912 KB
testcase_06 AC 352 ms
118,272 KB
testcase_07 AC 351 ms
118,528 KB
testcase_08 AC 49 ms
53,504 KB
testcase_09 AC 255 ms
104,576 KB
testcase_10 AC 264 ms
104,448 KB
testcase_11 AC 48 ms
53,248 KB
testcase_12 AC 47 ms
53,632 KB
testcase_13 AC 431 ms
152,576 KB
testcase_14 AC 428 ms
152,448 KB
testcase_15 AC 429 ms
152,704 KB
testcase_16 AC 428 ms
152,320 KB
testcase_17 AC 422 ms
152,448 KB
testcase_18 AC 199 ms
113,920 KB
testcase_19 AC 425 ms
152,448 KB
testcase_20 AC 318 ms
136,576 KB
testcase_21 AC 314 ms
136,704 KB
testcase_22 AC 307 ms
138,076 KB
testcase_23 AC 112 ms
105,944 KB
testcase_24 AC 390 ms
149,632 KB
testcase_25 AC 420 ms
151,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
from collections import Counter
M = max(A)
C = [0]*(M+1)
for a in A:
    C[a] += 1
X = [0]*n
for g in range(1, M+1):
    j = g
    cnt = sum(C[g::g])
    if cnt != 0:
        X[n-cnt] = g
ans = 1
for i in range(n):
    ans = max(ans, X[i])
    print(ans)
0