結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | tamato |
提出日時 | 2021-11-05 22:13:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 715 bytes |
コンパイル時間 | 486 ms |
コンパイル使用メモリ | 82,612 KB |
実行使用メモリ | 121,468 KB |
最終ジャッジ日時 | 2024-11-06 13:05:39 |
合計ジャッジ時間 | 5,233 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
112,688 KB |
testcase_01 | AC | 51 ms
68,992 KB |
testcase_02 | AC | 54 ms
68,364 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 54 ms
69,048 KB |
testcase_10 | WA | - |
testcase_11 | AC | 50 ms
67,448 KB |
testcase_12 | AC | 52 ms
68,228 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
mod = 1000000007 eps = 10**-9 NN = 10 ** 6 def main(): import sys from collections import Counter input = sys.stdin.readline N = int(input()) A = list(map(int, input().split())) C = Counter(A) cnt = [N] * (NN+1) for a in C: x = C[a] for d in range(1, a+1): if d * d > a: break if a % d == 0: cnt[d] -= x if d * d != a: cnt[a // d] -= x ans = [1] * (N+1) for x in range(1, NN+1): k = cnt[x] ans[k] = x for i in range(1, N+1): ans[i] = max(ans[i], ans[i-1]) for i in range(N): print(ans[i]) if __name__ == '__main__': main()