結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | irumo8202 |
提出日時 | 2022-01-29 13:51:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 695 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 82,384 KB |
実行使用メモリ | 229,228 KB |
最終ジャッジ日時 | 2025-01-01 23:55:56 |
合計ジャッジ時間 | 34,287 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 36 ms
61,736 KB |
testcase_02 | AC | 38 ms
215,684 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 37 ms
55,220 KB |
testcase_09 | AC | 41 ms
62,964 KB |
testcase_10 | WA | - |
testcase_11 | AC | 38 ms
54,568 KB |
testcase_12 | AC | 35 ms
55,744 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 1,560 ms
133,376 KB |
testcase_19 | TLE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | AC | 121 ms
104,548 KB |
testcase_24 | AC | 122 ms
104,592 KB |
testcase_25 | TLE | - |
ソースコード
from collections import defaultdict N = int(input()) A = list(map(int, input().split())) def make_divisors(n): lower_divisors, upper_divisors = [], [] i = 1 while i * i <= n: if n % i == 0: lower_divisors.append(i) if i != n // i: upper_divisors.append(n // i) i += 1 return lower_divisors + upper_divisors[::-1] cnt = defaultdict(int) for a in A: divs_a = make_divisors(a) for d in divs_a: cnt[d] += 1 ans = [0] * N for g, c in sorted(cnt.items(), key=lambda x: -x[1]): ans[N - c] = max(ans[N - c], g) for i in range(1, N): if ans[i] == 0: ans[i] = ans[i - 1] print(*ans, sep="\n")