結果
問題 | No.2379 Burnside's Theorem |
ユーザー | kpinkcat |
提出日時 | 2023-10-03 01:11:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,088 bytes |
コンパイル時間 | 2,170 ms |
コンパイル使用メモリ | 203,648 KB |
実行使用メモリ | 11,432 KB |
最終ジャッジ日時 | 2024-07-26 13:57:28 |
合計ジャッジ時間 | 4,138 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 8 ms
6,940 KB |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | RE | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | RE | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 10 ms
6,944 KB |
testcase_20 | AC | 16 ms
8,864 KB |
testcase_21 | AC | 25 ms
11,200 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 26 ms
11,264 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:39:13: warning: 'p' may be used uninitialized [-Wmaybe-uninitialized] 39 | for (ll i = p + 1; i <= n; i++){ | ^ main.cpp:15:11: note: 'p' was declared here 15 | ll n, p, t; | ^
ソースコード
#include <bits/stdc++.h> #include<iostream> #include<map> #include<vector> #include <algorithm> #include<math.h> #include <iomanip> #include<set> #include <numeric> #include<string> using ll = long long; using namespace std; int main(){ ll n, p, t; cin >> n; t = pow(n, 0.5); vector<ll> is_prime(t, 1); is_prime[0] = 0; is_prime[1] = 0; for (ll i = 2; i < t; i++){ for(ll j = i*i; j < t; j += i) is_prime[j] = 0; } for (ll i = 2; i < t; i++){ if ((is_prime[i]) && !(n%i)){ p = i; while (n){ if (!(n%p)) n /= p; else break; } break; } } if (n == 1){ cout << "Yes" << endl; return 0; } for (ll i = p + 1; i <= n; i++){ if ((is_prime[i] = 1) && !(n%i)){ p = i; while (n){ if (!(n%p)) n /= p; else break; } break; } } if (n == 1){ cout << "Yes" << endl; return 0; } cout << "No" << endl; }