結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | rlangevin |
提出日時 | 2023-02-06 01:19:56 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 602 bytes |
コンパイル時間 | 606 ms |
コンパイル使用メモリ | 82,472 KB |
実行使用メモリ | 128,044 KB |
最終ジャッジ日時 | 2024-07-04 09:59:45 |
合計ジャッジ時間 | 17,331 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
112,256 KB |
testcase_01 | AC | 53 ms
67,456 KB |
testcase_02 | AC | 65 ms
68,992 KB |
testcase_03 | AC | 73 ms
72,448 KB |
testcase_04 | AC | 70 ms
70,528 KB |
testcase_05 | AC | 70 ms
70,656 KB |
testcase_06 | AC | 71 ms
70,656 KB |
testcase_07 | AC | 70 ms
70,784 KB |
testcase_08 | AC | 55 ms
67,968 KB |
testcase_09 | AC | 64 ms
70,144 KB |
testcase_10 | AC | 68 ms
72,576 KB |
testcase_11 | AC | 53 ms
67,840 KB |
testcase_12 | AC | 51 ms
67,328 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 1,952 ms
117,128 KB |
testcase_15 | AC | 1,946 ms
117,192 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 1,335 ms
120,980 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
from collections import * def div(n): if n <= 0: return [] S = set() i = 1 while i * i <= n: if n % i == 0: S.add(i) S.add(n // i) i += 1 return list(S) N = int(input()) A = list(map(int, input().split())) D = defaultdict(int) for a in A: D[a] += 1 M = 1010101 L = [0] * M for k, v in D.items(): for j in div(k): L[j] += v for i in range(M-2, -1, -1): L[i] = max(L[i], L[i + 1]) now = 1 for i in range(N): while L[now] + i >= N and L[now + 1] + i >= N: now += 1 print(now)