結果

問題 No.36 素数が嫌い!
ユーザー sggkshiosggkshio
提出日時 2016-11-20 23:56:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 81,532 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-05 12:07:39
合計ジャッジ時間 2,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 34 ms
5,376 KB
testcase_12 AC 94 ms
5,376 KB
testcase_13 AC 95 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 57 ms
5,376 KB
testcase_27 AC 82 ms
5,376 KB
testcase_28 AC 56 ms
5,376 KB
testcase_29 AC 92 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include<stdio.h>
#include<string>
#include<iostream>
#include<cctype>
#include<cstdio>
#include<vector>
#include<stack>
#include<queue>
#include <algorithm>
#include<math.h>
#include<set>
#include<map>
#include<iomanip>

//#include<bits/stdc++.h>



using namespace std;




int main() {
	
	long long int a;
	cin>>a;

	int t=0;
	vector<int>r;
	for(long long int i=2;i*i<=a;i++)if(a%i==0){
		///r.push_back(i);
		//cout<<i;
		if(i%2==0){
				cout<<"YES"<<endl;
				return 0;
			}

		for(int j=3;j*j<=i;j+=2){
			if(i%j==0){
				cout<<"YES"<<endl;
				return 0;
			}
		}
	}
	/*
	int y=0;
	while(y<r.size()){
		for(int i=2;)

	}
	*/
	cout<<"NO"<<endl;
	return 0;
}

	
0