結果
問題 | No.36 素数が嫌い! |
ユーザー | sahiya |
提出日時 | 2021-03-02 19:47:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 106 ms / 5,000 ms |
コード長 | 1,705 bytes |
コンパイル時間 | 1,667 ms |
コンパイル使用メモリ | 120,112 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-15 00:20:32 |
合計ジャッジ時間 | 3,262 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
6,816 KB |
testcase_01 | AC | 4 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 36 ms
6,816 KB |
testcase_12 | AC | 106 ms
6,816 KB |
testcase_13 | AC | 105 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 6 ms
6,816 KB |
testcase_20 | AC | 5 ms
6,820 KB |
testcase_21 | AC | 15 ms
6,820 KB |
testcase_22 | AC | 3 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 17 ms
6,816 KB |
testcase_25 | AC | 20 ms
6,820 KB |
testcase_26 | AC | 38 ms
6,820 KB |
testcase_27 | AC | 4 ms
6,816 KB |
testcase_28 | AC | 38 ms
6,816 KB |
testcase_29 | AC | 3 ms
6,820 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <algorithm> #include <bitset> #include <climits> #include <cmath> #include <cstring> #include <deque> #include <forward_list> #include <functional> #include <iomanip> #include <iostream> #include <list> #include <map> #include <queue> #include <set> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; typedef long long ll; typedef pair<int, int> P; typedef bitset<16> BS; struct edge { int to, cost, id; }; const double EPS = 1E-09; const ll MOD = 1E+09 + 7; // =998244353; const ll INF = 1E18; const int MAX_N = 1E+05; ll dx[4] = { -1, 1, 0, 0 }, dy[4] = { 0, 0, -1, 1 }; ll N; map<ll, ll> prime_factor(ll n); int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin >> N; auto res = prime_factor(N); bool ans = true; if (res.size() == 2) { ans = !all_of(res.begin(), res.end(), [](pair<ll, ll> p) { return p.second == 1; }); } else if (res.size() == 1) { if (res.begin()->second <= 2) ans = false; } else if (res.size() == 0) { ans = false; } /* for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { cout << "i = " << i << ", j = " << j << ", dp = " << dp[i][j] << "\n"; } } */ cout << (ans ? "YES" : "NO") << "\n"; return 0; } //素因数分解 map<ll, ll> prime_factor(ll n) { map<ll, ll> mp; for (ll i = 2; i * i <= n; i++) { while (n % i == 0) { mp[i]++; n /= i; } } if (n != 1) mp[n] = 1; return mp; }