結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
4,724 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 12 ms
4,592 KB
testcase_05 AC 12 ms
4,928 KB
testcase_06 AC 12 ms
4,788 KB
testcase_07 AC 13 ms
4,588 KB
testcase_08 AC 12 ms
4,640 KB
testcase_09 AC 11 ms
4,656 KB
testcase_10 AC 12 ms
4,584 KB
testcase_11 AC 12 ms
4,780 KB
testcase_12 AC 12 ms
4,644 KB
testcase_13 AC 11 ms
4,580 KB
testcase_14 AC 11 ms
4,720 KB
testcase_15 AC 12 ms
4,660 KB
testcase_16 AC 11 ms
4,780 KB
testcase_17 AC 12 ms
4,780 KB
testcase_18 AC 12 ms
4,576 KB
testcase_19 AC 11 ms
4,580 KB
testcase_20 AC 11 ms
4,640 KB
testcase_21 AC 12 ms
4,580 KB
testcase_22 AC 12 ms
4,580 KB
testcase_23 AC 12 ms
4,756 KB
testcase_24 AC 12 ms
4,716 KB
testcase_25 AC 12 ms
4,636 KB
testcase_26 AC 12 ms
4,936 KB
testcase_27 WA -
testcase_28 AC 12 ms
4,788 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 12 ms
4,592 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 12 ms
4,780 KB
testcase_36 AC 12 ms
4,636 KB
testcase_37 AC 12 ms
4,784 KB
testcase_38 AC 12 ms
4,792 KB
testcase_39 AC 12 ms
4,588 KB
testcase_40 AC 12 ms
4,640 KB
testcase_41 AC 12 ms
4,780 KB
testcase_42 AC 12 ms
4,792 KB
testcase_43 AC 12 ms
4,928 KB
testcase_44 AC 12 ms
4,656 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;
int ans;
vector<int> hurui_v(int n) {
    vector<int> 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 (int i = 0; i < n + 1; i++) {
        if (isPrime_v[i]) v.push_back(i);
    }

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

int main(){
    cin>>N;
    vector<int> 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