結果
問題 | No.2081 Make a Test Case of GCD Subset |
ユーザー | flygon |
提出日時 | 2022-09-26 19:42:07 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 812 bytes |
コンパイル時間 | 371 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 68,036 KB |
最終ジャッジ日時 | 2024-06-02 00:15:38 |
合計ジャッジ時間 | 5,015 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
61,440 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 | 44 ms
62,080 KB |
testcase_24 | AC | 44 ms
61,440 KB |
testcase_25 | AC | 44 ms
61,824 KB |
testcase_26 | AC | 44 ms
61,568 KB |
testcase_27 | WA | - |
ソースコード
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)