結果

問題 No.2081 Make a Test Case of GCD Subset
ユーザー tamatotamato
提出日時 2022-09-25 21:42:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,095 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 72,728 KB
最終ジャッジ日時 2024-06-01 23:26:14
合計ジャッジ時間 5,056 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
64,664 KB
testcase_01 AC 52 ms
68,856 KB
testcase_02 RE -
testcase_03 AC 50 ms
69,220 KB
testcase_04 AC 53 ms
68,636 KB
testcase_05 RE -
testcase_06 AC 53 ms
69,524 KB
testcase_07 AC 53 ms
68,560 KB
testcase_08 RE -
testcase_09 AC 53 ms
68,516 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 57 ms
68,576 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 53 ms
67,408 KB
testcase_19 RE -
testcase_20 AC 54 ms
68,792 KB
testcase_21 WA -
testcase_22 AC 45 ms
63,284 KB
testcase_23 AC 45 ms
64,048 KB
testcase_24 AC 44 ms
62,964 KB
testcase_25 AC 45 ms
63,304 KB
testcase_26 AC 45 ms
63,964 KB
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    NMAX = 10 ** 5
    NMAX2 = 10 ** 3
    is_prime = [1] * (NMAX + 1)
    is_prime[0] = is_prime[1] = 0
    for p in range(2, NMAX + 1):
        if not is_prime[p]:
            continue
        for d in range(2, NMAX + 1):
            if p * d > NMAX:
                break
            is_prime[p * d] = 0

    prime_list = []
    for p in range(2, NMAX2 + 1):
        if is_prime[p]:
            prime_list.append(p)
    prime_list2 = []
    for p in range(NMAX2+1, NMAX):
        if is_prime[p]:
            prime_list2.append(p)

    ans = []
    M = int(input())
    i = 0
    for lv in range(30, 1, -1):
        k = 2 ** lv - 1
        if M >= k:
            M -= k
            p = prime_list[i]
            i += 1
            for _ in range(lv):
                ans.append(p * prime_list.pop())
        if M <= len(prime_list2):
            break
    for i in range(M):
        p = prime_list2[i]
        i += 1
        ans.append(p)

    print(len(ans))
    print(*ans)


if __name__ == '__main__':
    main()
0