結果

問題 No.1058 素敵な数
ユーザー sawfishsawfish
提出日時 2022-10-24 11:24:25
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 2,898 ms
コンパイル使用メモリ 93,800 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-15 11:18:50
合計ジャッジ時間 4,518 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
using LL = long long;
using ULL = unsigned long long;

LL P[]{
        100003,
        100019,
        100043,
        100049,
};

int main() {
    int N;
    cin >> N;

    vector<LL> ans;
    ans.push_back(1);

    for (int i = 0; i < 4; i++) {
        for (int j = 0; j < 4; j++) {
            ans.push_back(P[i] * P[j]);
        }
    }
    sort(ans.begin(), ans.end());

    cout << ans[N - 1] << endl;
}
0