結果

問題 No.2081 Make a Test Case of GCD Subset
ユーザー flygonflygon
提出日時 2022-09-26 19:42:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 812 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 87,128 KB
実行使用メモリ 77,776 KB
最終ジャッジ日時 2023-08-24 03:00:42
合計ジャッジ時間 7,313 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
76,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 83 ms
76,916 KB
testcase_24 AC 82 ms
77,168 KB
testcase_25 AC 83 ms
76,760 KB
testcase_26 AC 82 ms
76,840 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())
nums = []
for i in range(1,30):
  nums.append((1<<i)-1)

import bisect
use = []
left = m
while left:
  t = bisect.bisect_right(nums, left)
  use.append(t)
  left -= nums[t-1]

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 = []
cnt = 0
luse = len(use)
for i in range(2, 10**5):
  if t[i]:
    pn.append(i)
    cnt += 1
  if cnt == luse: break
from math import gcd
ans = set()
for i in range(luse):
  nn = use[i]
  p = pn[i]
  cnt = 0
  for j in range(p, 10**5,p):
    flg = True
    for k in pn:
      if k == p: continue
      if j % k == 0: flg = False
    if flg:
      ans.add(j)
      cnt += 1
    if cnt == nn: break
print(len(ans))
print(*ans)

0