結果
問題 | No.8023 素数判定するだけ |
ユーザー | algon_320 |
提出日時 | 2017-03-31 23:02:27 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 471 bytes |
コンパイル時間 | 728 ms |
コンパイル使用メモリ | 66,288 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 20:02:00 |
合計ジャッジ時間 | 3,488 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <iostream> #include <string> using namespace std; string zero=""; string one="#"; string two="##"; #define sz(x) ((int)x.size()) string solve(int x) { if(x==sz(one)) return "NO"; if(x==sz(two)) return "YES"; string i="##"; while(sz(i)<x) { if(x%sz(i)==sz(zero)) { return "NO"; } i.push_back('#'); } return "YES"; } int main() { int n; cin>>n; cout<<solve(n)<<endl; return zero.size(); }