結果
問題 | No.2081 Make a Test Case of GCD Subset |
ユーザー | ニックネーム |
提出日時 | 2022-09-25 23:14:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-01 23:49:23 |
合計ジャッジ時間 | 3,400 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,752 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 | AC | 28 ms
10,752 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 28 ms
10,752 KB |
testcase_25 | AC | 27 ms
10,752 KB |
testcase_26 | AC | 27 ms
10,752 KB |
testcase_27 | WA | - |
ソースコード
class PrimeNumbers: def __init__(self, nmax): self.prime_judgement = [True]*(nmax+1) self.prime_judgement[0] = self.prime_judgement[1] = False for i in range(2, nmax+1): if self.prime_judgement[i]: for j in range(2, nmax//i+1): self.prime_judgement[i*j] = False self.prime_list = [] for i, flag in enumerate(self.prime_judgement): if flag: self.prime_list.append(i) m = int(input()) pn = PrimeNumbers(10**3) r = [1] while r[-1]*2+1 <= m: r.append(r[-1]*2+1) i = 0 ans = [1] while m: while r[-1] > m: r.pop() for j in range(len(r)): ans.append(pn.prime_list[i]**(j+1)) i += 1; m -= r[-1] print(len(ans)) print(*ans)