結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | mkawa2 |
提出日時 | 2021-11-05 22:11:31 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,523 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 82,464 KB |
実行使用メモリ | 127,488 KB |
最終ジャッジ日時 | 2024-11-06 13:02:31 |
合計ジャッジ時間 | 7,063 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 18446744073709551615 # inf = 4294967295 md = 10**9+7 # md = 998244353 # def factors_all(n): # res = [[1] for _ in range(n+1)] # for f in range(2, n//2+1): # for i in range(f, n+1, f): res[i].append(f) # for f in range(n//2+1,n+1): # res[f].append(f) # return res def factors(a): if a<=0:return [0] dd0,dd1=[],[] for d in range(1,round(a**0.5)+1): if a%d:continue dd0.append(d) dd1.append(a//d) if dd0[-1]==dd1[-1]:dd1.pop() return dd0+dd1[::-1] mx = 1000001 # ff = factors_all(mx) # sv = Sieve(mx) # from random import randrange n = II() aa = LI() # aa=[randrange(1,1000000) for _ in range(n)] cnt = [0]*mx for a in aa: for f in factors(a): cnt[f] += 1 ans = [0]*n r = n for f in range(mx-1, 0, -1): if r == 0: break if n-cnt[f] < r: for i in range(n-cnt[f], r): ans[i] = f r = n-cnt[f] print(*ans, sep="\n")