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