結果

問題 No.3023 素数判定するだけ
ユーザー PachicobuePachicobue
提出日時 2020-02-06 00:31:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 1,041 ms
コンパイル使用メモリ 87,188 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-24 16:18:45
合計ジャッジ時間 4,613 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,368 KB
testcase_01 AC 2 ms
4,368 KB
testcase_02 WA -
testcase_03 AC 2 ms
4,368 KB
testcase_04 AC 2 ms
4,368 KB
testcase_05 AC 2 ms
4,368 KB
testcase_06 AC 2 ms
4,368 KB
testcase_07 AC 2 ms
4,368 KB
testcase_08 AC 2 ms
4,368 KB
testcase_09 AC 2 ms
4,368 KB
testcase_10 AC 2 ms
4,368 KB
testcase_11 AC 2 ms
4,368 KB
testcase_12 AC 2 ms
4,368 KB
testcase_13 AC 2 ms
4,368 KB
testcase_14 AC 2 ms
4,368 KB
testcase_15 AC 2 ms
4,368 KB
testcase_16 AC 2 ms
4,368 KB
testcase_17 AC 2 ms
4,368 KB
testcase_18 AC 2 ms
4,368 KB
testcase_19 AC 2 ms
4,368 KB
testcase_20 AC 2 ms
4,368 KB
testcase_21 AC 2 ms
4,368 KB
testcase_22 AC 1 ms
4,368 KB
testcase_23 AC 2 ms
4,368 KB
testcase_24 AC 2 ms
4,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <numeric>
#include <vector>
#include <functional>
constexpr int ONE = true;
constexpr int TWO = std::plus<int>{}(ONE,ONE);
constexpr int ZERO = std::minus<int>{}(ONE,ONE);
int main()
{
    int N;std::cin>>N;
    for(int p = TWO; std::multiplies<int>{}(p,p)<=N;p=std::plus<int>{}(p,ONE)){
        if(N%p==ZERO){ 
            std::cout << "NO"<<std::endl;
            return ZERO;
        }
    }
    std::cout << "YES"<<std::endl;
    return ZERO;
}
0