結果
問題 | No.36 素数が嫌い! |
ユーザー | Zu_rin |
提出日時 | 2020-04-30 18:07:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 834 bytes |
コンパイル時間 | 734 ms |
コンパイル使用メモリ | 78,900 KB |
実行使用メモリ | 40,960 KB |
最終ジャッジ日時 | 2024-05-09 16:23:23 |
合計ジャッジ時間 | 8,351 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <list> #include <queue> #include <cmath> #include <algorithm> #define rep(i, n) for(i = 0; i < (n); i++) #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) #define MOD 1000000007 #define PI 3.14159265358979323846 #define INF 1 << 30 using namespace std; typedef long long ll; typedef pair<int, int> pp; void Eratos(vector<int> & d) { int i, j; for (i = 2; i < d.size(); i++) { if (!d[i]) { for (j = i << 1; j < d.size(); j += i) { d[j] = 1; } } } return; } int main(void) { int i, ok = 0; ll num; cin >> num; vector<int> d(sqrt(num) + 1, 0); Eratos(d); rep(i, d.size()) { if (num % i == 0) { if (d[i] || d[num / i]) { ok = true; break; } } } if (ok) printf("YES\n"); else printf("NO\n"); return 0; }