結果

問題 No.689 E869120 and Constructing Array 3
ユーザー PachicobuePachicobue
提出日時 2018-09-14 17:27:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 998 bytes
コンパイル時間 2,336 ms
コンパイル使用メモリ 202,876 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 19:40:41
合計ジャッジ時間 3,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define show(x) std::cerr << #x << " = " << x << std::endl
constexpr int MAX = 1000004;
bool isprime[MAX + 1];
int main()
{
    int K;
    std::cin >> K;
    auto solve = [](int K) {
        std::vector<int> ans;
        if (K == 0) { return ans; }
        const int a = std::sqrt(K), b = K / a;
        for (int i = 0; i < a; i++) { ans.push_back(2); }
        for (int i = 0; i < b; i++) { ans.push_back(5); }
        K -= a * b;
        if (K == 0) { return ans; }
        const int c = std::sqrt(K), d = K / c;
        for (int i = 0; i < c; i++) { ans.push_back(4); }
        for (int i = 0; i < d; i++) { ans.push_back(7); }
        K -= c * d;
        if (K == 0) { return ans; }
        for (int i = 0; i < K; i++) { ans.push_back(20); }
        ans.push_back(23);
        return ans;
    };
    const auto ans = solve(K);
    std::cout << ans.size() << std::endl;
    for (const auto e : ans) { std::cout << e << " "; }
    std::cout << std::endl;
    return 0;
}
0