結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | lloyz |
提出日時 | 2021-11-09 23:16:18 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 481 bytes |
コンパイル時間 | 445 ms |
コンパイル使用メモリ | 82,200 KB |
実行使用メモリ | 226,504 KB |
最終ジャッジ日時 | 2024-11-19 06:11:59 |
合計ジャッジ時間 | 32,752 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 39 ms
60,504 KB |
testcase_02 | AC | 54 ms
180,164 KB |
testcase_03 | AC | 59 ms
74,932 KB |
testcase_04 | AC | 57 ms
69,056 KB |
testcase_05 | AC | 58 ms
68,912 KB |
testcase_06 | AC | 58 ms
68,496 KB |
testcase_07 | AC | 57 ms
68,108 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 40 ms
53,404 KB |
testcase_12 | AC | 41 ms
51,940 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | WA | - |
testcase_19 | TLE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | AC | 110 ms
105,584 KB |
testcase_24 | WA | - |
testcase_25 | TLE | - |
ソースコード
n = int(input()) A = list(map(int, input().split())) cnt = [0 for _ in range(max(A) + 1)] for i in range(n): f = 1 while f * f <= A[i]: if A[i] % f == 0: cnt[f] += 1 cnt[A[i] // f] += 1 f += 1 ans = [0 for _ in range(n)] for i in range(1, max(A) + 1): num = n - cnt[i] if num == n: continue ans[num] = max(ans[num], i) for i in range(n): if i > 0: ans[i] = max(ans[i], ans[i - 1]) print(ans[i])