結果

問題 No.312 置換処理
ユーザー dnishdnish
提出日時 2018-05-29 23:51:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,356 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 83,860 KB
実行使用メモリ 5,348 KB
最終ジャッジ日時 2023-09-12 20:30:58
合計ジャッジ時間 4,227 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
4,984 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 12 ms
5,168 KB
testcase_05 AC 12 ms
5,316 KB
testcase_06 AC 13 ms
4,972 KB
testcase_07 AC 14 ms
5,028 KB
testcase_08 AC 12 ms
4,972 KB
testcase_09 AC 13 ms
5,176 KB
testcase_10 AC 12 ms
5,028 KB
testcase_11 AC 13 ms
5,180 KB
testcase_12 AC 13 ms
5,332 KB
testcase_13 AC 12 ms
4,980 KB
testcase_14 AC 12 ms
5,116 KB
testcase_15 AC 12 ms
4,976 KB
testcase_16 AC 13 ms
4,980 KB
testcase_17 AC 12 ms
5,168 KB
testcase_18 AC 12 ms
5,108 KB
testcase_19 AC 12 ms
5,176 KB
testcase_20 AC 12 ms
5,036 KB
testcase_21 AC 12 ms
5,168 KB
testcase_22 AC 12 ms
5,192 KB
testcase_23 AC 13 ms
5,036 KB
testcase_24 AC 13 ms
5,032 KB
testcase_25 AC 13 ms
5,112 KB
testcase_26 AC 13 ms
5,108 KB
testcase_27 WA -
testcase_28 AC 13 ms
5,024 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 13 ms
4,968 KB
testcase_32 AC 13 ms
5,032 KB
testcase_33 AC 13 ms
4,976 KB
testcase_34 AC 13 ms
4,980 KB
testcase_35 AC 12 ms
4,980 KB
testcase_36 AC 13 ms
5,024 KB
testcase_37 AC 12 ms
4,972 KB
testcase_38 AC 13 ms
5,108 KB
testcase_39 AC 12 ms
5,184 KB
testcase_40 AC 12 ms
5,024 KB
testcase_41 AC 12 ms
5,168 KB
testcase_42 AC 12 ms
4,976 KB
testcase_43 AC 13 ms
5,032 KB
testcase_44 AC 13 ms
5,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <deque>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <utility>
#include <vector>
#define p(s) cout<<(s)<<endl
#define REP(i,n,N) for(int i=n;i<N;i++)
#define RREP(i,n,N) for(int i=N-1;i>=n;i--)
#define CK(n,a,b) ((a)<=(n)&&(n)<(b))
#define F first
#define S second
typedef long long ll;
using namespace std;

ll N,ans;
vector<ll> hurui_v(int n) {
    vector<ll> v;
    bool *isPrime_v;
    isPrime_v = new bool[n + 1]; // 処理用のメモリ確保

    // 初期化
    isPrime_v[0] = isPrime_v[1] = isPrime_v[2] = false;
    for (int i = 3; i < n + 1; i++) isPrime_v[i] = true;

    // isPrime[0~n]で素数のものだけtrueにする
    for (int i = 3; i*i <= n; i++) {
        for (int j = i * 2; j < n + 1; j += i) {
            isPrime_v[j] = false;
        }
    }

    // 素数のみ追加
    for (ll i = 0; i < n + 1; i++) {
        if (isPrime_v[i]) v.push_back(i);
    }

    delete[] isPrime_v; //メモリ解放
    return v;
}

int main(){
    cin>>N;
    vector<ll> prime = hurui_v(1e6);
    for(auto pr:prime){
        if(N%pr==0){
            ans=pr;
            break;
        }
        if(N<=pr*pr){
            ans=N;
            break;
        }
    }
    p(ans);
    return 0;
}
0