結果

問題 No.36 素数が嫌い!
ユーザー tskatska
提出日時 2015-04-27 17:25:03
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 1,603 ms
コンパイル使用メモリ 156,880 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 04:53:59
合計ジャッジ時間 2,248 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:41:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   41 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#include <cstdio>
using namespace std;
//素数判定 O(√n)
bool is_prime(int n){
	for(int i=2;i*i<=n;i++){
		if(n%i==0){return false;}
	}
	return n!=1;
}
/*
//約数の列挙 O(√n)
vector<int> divisor(int n){
	vector<int> res;
	for(int i=1;i*i<=n;i++){
		if(n%i==0){
			res.push_back(i)
			if(i!=n/i){res.push_back(n/i);}
		}
	}
	return res;
}

//素因数分解 O(√n)
map<int, int> prime_factor(int n){
	map<int, int> res;
	for(int i=2;i*i<=n;i++){
		while(n%i==){
			++res[i];
			n/=1;
		}
	}
	if(n!=1){res[n]=1;}
	return res;
}
*/


int main() {
	int n;
	scanf("%d",&n);
	bool sum;
	sum=is_prime(n);
	if(sum=true){
		puts("YES");
	}else{
		puts("NO");
	}
	return 0;
}
0