結果

問題 No.2081 Make a Test Case of GCD Subset
ユーザー flygonflygon
提出日時 2022-09-26 20:17:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 683 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-12-22 15:42:32
合計ジャッジ時間 5,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

m = int(input())

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