結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
106,496 KB
testcase_01 AC 47 ms
53,376 KB
testcase_02 AC 192 ms
61,696 KB
testcase_03 AC 294 ms
64,256 KB
testcase_04 AC 295 ms
63,872 KB
testcase_05 AC 293 ms
64,512 KB
testcase_06 AC 298 ms
64,000 KB
testcase_07 AC 304 ms
64,256 KB
testcase_08 AC 48 ms
53,760 KB
testcase_09 AC 173 ms
62,464 KB
testcase_10 AC 223 ms
63,872 KB
testcase_11 AC 47 ms
53,120 KB
testcase_12 AC 46 ms
53,376 KB
testcase_13 AC 948 ms
111,432 KB
testcase_14 AC 900 ms
111,428 KB
testcase_15 AC 976 ms
111,052 KB
testcase_16 AC 992 ms
111,300 KB
testcase_17 AC 894 ms
111,428 KB
testcase_18 AC 266 ms
114,000 KB
testcase_19 AC 558 ms
114,560 KB
testcase_20 AC 309 ms
105,088 KB
testcase_21 AC 312 ms
105,088 KB
testcase_22 AC 240 ms
106,624 KB
testcase_23 AC 126 ms
105,088 KB
testcase_24 AC 275 ms
105,472 KB
testcase_25 AC 620 ms
113,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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