結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-11-14 11:09:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 311 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 63,512 KB
最終ジャッジ日時 2024-11-29 10:29:40
合計ジャッジ時間 59,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 31 ms
16,000 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 30 ms
16,000 KB
testcase_09 AC 1,758 ms
27,136 KB
testcase_10 AC 1,769 ms
27,264 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 840 ms
29,424 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 343 ms
14,132 KB
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
cnt = [0]*(max(A)+1)
for a in A:
    cnt[a] += 1
ans = [1]*(N+1)
mA = max(A)
for i in range(1,mA+1):
    tmp = 0
    for c in cnt[::i]:
        tmp += c
    ans[tmp] = max(i,ans[tmp])
    
tmp = 1
for i in range(N):
    tmp = max(tmp,ans[-1-i])
    print(tmp)
0