結果
問題 | No.36 素数が嫌い! |
ユーザー | naimonon77 |
提出日時 | 2015-10-14 21:19:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,004 bytes |
コンパイル時間 | 1,036 ms |
コンパイル使用メモリ | 66,452 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-21 15:52:01 |
合計ジャッジ時間 | 84,009 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2,628 ms
5,888 KB |
testcase_03 | AC | 2,627 ms
5,760 KB |
testcase_04 | AC | 2,645 ms
6,016 KB |
testcase_05 | AC | 2,640 ms
6,016 KB |
testcase_06 | AC | 2,645 ms
5,760 KB |
testcase_07 | AC | 2,644 ms
5,888 KB |
testcase_08 | AC | 2,642 ms
5,888 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2,643 ms
6,016 KB |
testcase_12 | AC | 2,638 ms
6,016 KB |
testcase_13 | AC | 2,643 ms
6,016 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2,646 ms
5,888 KB |
testcase_16 | AC | 2,670 ms
6,016 KB |
testcase_17 | AC | 2,643 ms
6,016 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2,630 ms
6,940 KB |
testcase_27 | AC | 2,654 ms
6,944 KB |
testcase_28 | AC | 2,649 ms
6,940 KB |
testcase_29 | AC | 2,641 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <cstring> #include <algorithm> #include <sstream> #include <map> #include <set> using namespace std; #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) typedef long long ll; typedef unsigned long long ull; typedef long double lb; /* ここからが本編 */ /* prime_rekkyo(prime,n)は n以下の素数をまで2,3,…と格納していきます */ void prime_rekkyo(int prime[],int n) { int i,j,k; int a = 0; prime[a++] = 2; for(i=3;i<=n;i+=2) { k=0; for(j=3;j*j<=i;j+=2) { if(i%j==0) { k=1; break; } } if(k==0) prime[a++] = i; } } int main(void) { ull i=1,j,k; ull n; cin >> n; char cnt = 0; static int e[1000000]; prime_rekkyo(e,10000005); for(j=0;e[j]*e[j] <= n;j++) { if(n % e[j] == 0) cnt++; } if(cnt > 2) cout << "YES" << endl; else cout << "NO" << endl; return 0; }