結果
問題 |
No.36 素数が嫌い!
|
ユーザー |
![]() |
提出日時 | 2014-10-08 00:45:15 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 427 bytes |
コンパイル時間 | 1,083 ms |
コンパイル使用メモリ | 60,756 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-12-30 07:54:24 |
合計ジャッジ時間 | 13,858 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 14 WA * 10 TLE * 2 |
ソースコード
#include <algorithm> #include <iostream> #include <string.h> #include <math.h> using namespace std; int main(){ long long n; cin>>n; if(n==1){ cout << "NO" << endl; return 0; } if(n%2==0){ cout << "YES" << endl; return 0; } for(int i = 3; i*i <= n; i+=2){ if(n%i==0){ cout << "YES" << endl; return 0; } } cout << "NO" << endl; return 0; }