結果
問題 |
No.36 素数が嫌い!
|
ユーザー |
|
提出日時 | 2016-02-10 03:18:29 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 583 bytes |
コンパイル時間 | 1,277 ms |
コンパイル使用メモリ | 158,540 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 22:04:08 |
合計ジャッジ時間 | 3,396 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 17 WA * 9 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(i=0;i<n;++i) #define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); itr++) #define mp make_pair #define pb push_back #define fi first #define sc second bool prime(ll n){ bool ret=true; for(ll i=2; i*i<=n; ++i){ if(n%i==0) ret=false; } return ret; } int main(int argc, char const *argv[]) { ll n; cin >>n; bool ans=true; if(n==1) ans=false; else if(prime(n))ans=false; string r="NO"; if(ans) r="YES"; std::cout << r << std::endl; return 0; }