結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー horitaka1999horitaka1999
提出日時 2021-11-05 23:37:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 116,352 KB
最終ジャッジ日時 2024-11-08 04:53:10
合計ジャッジ時間 7,713 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
116,096 KB
testcase_01 AC 181 ms
83,072 KB
testcase_02 AC 176 ms
83,072 KB
testcase_03 AC 180 ms
83,456 KB
testcase_04 AC 184 ms
83,456 KB
testcase_05 AC 185 ms
83,200 KB
testcase_06 AC 173 ms
83,584 KB
testcase_07 AC 177 ms
83,584 KB
testcase_08 AC 173 ms
83,200 KB
testcase_09 AC 169 ms
83,200 KB
testcase_10 AC 176 ms
83,200 KB
testcase_11 AC 174 ms
83,072 KB
testcase_12 AC 170 ms
83,328 KB
testcase_13 AC 246 ms
116,352 KB
testcase_14 AC 248 ms
115,968 KB
testcase_15 AC 244 ms
115,584 KB
testcase_16 AC 249 ms
115,840 KB
testcase_17 AC 253 ms
115,712 KB
testcase_18 AC 239 ms
115,456 KB
testcase_19 AC 248 ms
116,096 KB
testcase_20 AC 242 ms
114,560 KB
testcase_21 AC 250 ms
114,560 KB
testcase_22 AC 241 ms
116,224 KB
testcase_23 AC 232 ms
113,152 KB
testcase_24 AC 235 ms
113,280 KB
testcase_25 AC 244 ms
115,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
cnt = [0 for _ in range(10**6+1)]
for a in A:
    cnt[a] += 1
filed = [0 for _ in range(N+1)]
for g in range(1,10**6+1):
    m = 10 ** 6 // g
    tmp = 0
    for i in range(1,m+1):
        tmp += cnt[g * i]
    filed[N-tmp] = g

def max_lift(List):
    rev = [0 for _ in range(len(List))]
    for i in range(len(List)):
        if i == 0:
            rev[i] = List[i]
        else:
            rev[i] = max(rev[i-1],List[i])
    return rev
ans = max_lift(filed)
for k in range(N):
    print(ans[k])
    
0