結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | Shirotsume |
提出日時 | 2021-11-05 22:00:25 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 848 bytes |
コンパイル時間 | 523 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 128,592 KB |
最終ジャッジ日時 | 2024-11-06 12:50:05 |
合計ジャッジ時間 | 7,267 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
def make_divisors(n, b): for i in range(1, n + 1): if i * i > n + 1: break if n % i == 0: b[i] += 1 if i != n // i: b[n // i] += 1 return b n = int(input()) a = list(map(int,input().split())) #K = N - 1のとき答えはmax(a)になる #ではK = N - 2では?2個残さないといけないので、答えは2個選んだときの最大公約数の最大値 #同様にN - K個選んだ時の最大公約数の最大値になる #aの約数をマッピングしていく、N - K以上の最大値を探せばよい b = [0] * (10 ** 6 + 100) for i in range(n): b = make_divisors(a[i], b) ans = [0] * (n + 1) for i in range(10 ** 6 + 99): ans[b[i]] = i ans.reverse() for i in range(n): if i > 0 and ans[i] == 0: ans[i] = ans[i - 1] print(ans[i])