結果

問題 No.2081 Make a Test Case of GCD Subset
ユーザー flygonflygon
提出日時 2022-09-26 20:18:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 724 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 67,852 KB
最終ジャッジ日時 2024-12-22 15:42:38
合計ジャッジ時間 5,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
64,640 KB
testcase_01 AC 60 ms
64,896 KB
testcase_02 AC 60 ms
65,408 KB
testcase_03 AC 60 ms
65,280 KB
testcase_04 AC 60 ms
65,024 KB
testcase_05 AC 59 ms
65,408 KB
testcase_06 AC 59 ms
65,792 KB
testcase_07 AC 59 ms
65,536 KB
testcase_08 AC 59 ms
65,664 KB
testcase_09 AC 60 ms
65,408 KB
testcase_10 AC 59 ms
65,536 KB
testcase_11 AC 59 ms
65,152 KB
testcase_12 AC 59 ms
65,664 KB
testcase_13 AC 59 ms
65,664 KB
testcase_14 AC 62 ms
65,280 KB
testcase_15 AC 61 ms
65,024 KB
testcase_16 AC 60 ms
65,536 KB
testcase_17 AC 60 ms
65,664 KB
testcase_18 AC 60 ms
65,664 KB
testcase_19 AC 60 ms
65,408 KB
testcase_20 AC 60 ms
65,280 KB
testcase_21 AC 40 ms
51,584 KB
testcase_22 AC 60 ms
65,024 KB
testcase_23 WA -
testcase_24 AC 58 ms
64,768 KB
testcase_25 AC 59 ms
65,536 KB
testcase_26 AC 59 ms
64,768 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())
if m == 0:
  print(1)
  print(1)
  exit()
def e(n): #O(NloglogN)
  l = [True]*(n+1)
  l[0] = False
  l[1] = False
  for i in range(2,n):
    if l[i]:
      for p in range(i+i,n+1,i):
        l[p] = False
  return l

t = e(10**5)
pn = []
for i in range(2, 10**5):
  if t[i]:
    pn.append(i)

now = 0
left = m
bits = []
while left:
  if left & 1:
    bits.append(now)
  left >>= 1
  now += 1

from collections import deque
que = deque(pn)
koho = []
for i in bits:
  pn = que.popleft()
  for j in range(i):
    koho.append(pn)
  koho.append(que.pop())

ans = set()
koho.sort(key = lambda x:-x)
for i in koho:
  if i not in ans:
    ans.add(i)
  else:
    ans.add(i*que.popleft())
print(len(ans))
print(*ans)

0