結果
問題 | No.2081 Make a Test Case of GCD Subset |
ユーザー | shotoyoo |
提出日時 | 2022-09-25 23:41:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 1,948 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 82,404 KB |
実行使用メモリ | 75,540 KB |
最終ジャッジ日時 | 2024-06-01 23:52:12 |
合計ジャッジ時間 | 4,627 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
74,536 KB |
testcase_01 | AC | 55 ms
75,024 KB |
testcase_02 | AC | 55 ms
75,224 KB |
testcase_03 | AC | 55 ms
74,592 KB |
testcase_04 | AC | 55 ms
74,444 KB |
testcase_05 | AC | 55 ms
75,028 KB |
testcase_06 | AC | 54 ms
74,592 KB |
testcase_07 | AC | 53 ms
75,540 KB |
testcase_08 | AC | 55 ms
75,528 KB |
testcase_09 | AC | 53 ms
74,668 KB |
testcase_10 | AC | 56 ms
74,884 KB |
testcase_11 | AC | 54 ms
75,128 KB |
testcase_12 | AC | 54 ms
75,092 KB |
testcase_13 | AC | 56 ms
75,076 KB |
testcase_14 | AC | 54 ms
74,776 KB |
testcase_15 | AC | 55 ms
74,684 KB |
testcase_16 | AC | 55 ms
75,476 KB |
testcase_17 | AC | 56 ms
75,304 KB |
testcase_18 | AC | 54 ms
74,372 KB |
testcase_19 | AC | 56 ms
74,592 KB |
testcase_20 | AC | 55 ms
74,688 KB |
testcase_21 | AC | 54 ms
74,648 KB |
testcase_22 | AC | 54 ms
74,516 KB |
testcase_23 | AC | 53 ms
74,880 KB |
testcase_24 | AC | 55 ms
75,368 KB |
testcase_25 | AC | 55 ms
74,892 KB |
testcase_26 | AC | 55 ms
74,684 KB |
testcase_27 | AC | 54 ms
74,332 KB |
ソースコード
import sys, random input = lambda : sys.stdin.readline().rstrip() write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x)) debug = lambda x: sys.stderr.write(x+"\n") YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18 LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()] def debug(_l_): for s in _l_.split(): print(f"{s}={eval(s)}", end=" ") print() def dlist(*l, fill=0): if len(l)==1: return [fill]*l[0] ll = l[1:] return [dlist(*ll, fill=fill) for _ in range(l[0])] def hurui(n): """線形篩 pl: 素数のリスト mpf: iを割り切る最小の素因数 """ pl = [] mpf = [None]*(n+1) for d in range(2,n+1): if mpf[d] is None: mpf[d] = d pl.append(d) for p in pl: if p*d>n or p>mpf[d]: break mpf[p*d] = p return pl, mpf from collections import defaultdict def factor(num): d = defaultdict(int) if num==1: d.update({1:1}) return d while num>1: d[mpf[num]] += 1 num //= mpf[num] return d def fs(num): f = factor(num) ans = [1] for k,v in f.items(): tmp = [] for i in range(len(ans)): val = 1 for _ in range(v): val *= k ans.append(ans[i]*val) return ans pl, mpf = hurui(100000) ps = set(pl) ind = 0 n = int(input()) if n==0: ans = [1] else: ans = [] vs = [] while n: v = 1 while ((1<<(v+1))-1)<=n: v += 1 vs.append(v) n -= (1<<v)-1 ind = len(vs) for i in range(len(vs)): v = vs[i] p = pl[len(vs)-1-i] ans.append(p) for i in range(v-1): ans.append(p*pl[ind]) ind += 1 print(len(ans)) write(" ".join(map(str, ans)))