結果
問題 | No.2 素因数ゲーム |
ユーザー | tarakojo1019 |
提出日時 | 2021-01-18 16:20:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,335 bytes |
コンパイル時間 | 1,228 ms |
コンパイル使用メモリ | 116,304 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 05:36:26 |
合計ジャッジ時間 | 1,895 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<math.h> #include<algorithm> #include<stdint.h> #include<vector> #include<deque> #include<stack> #include<functional> #include<string> #include<numeric> #include<cstring> #include<random> #include<array> #include<fstream> #include<iomanip> #include<list> #include<set> #include<map> #include<unordered_map> #include<unordered_set> #include<bitset> #include<queue> /* #include<boost/multiprecision/cpp_int.hpp> using namespace boost::multiprecision; */ using namespace std; using ll = long long; using ull = unsigned long long; #define REP(i,a,b) for(ll i = a; i < b; ++i) #define PRI(s) std::cout << s << endl #define PRIF(v, n) printf("%."#n"f\n", (double)v) template<typename A, typename B>void mins(A& a, const B& b) { a = min(a, (A)b); }; template<typename A, typename B>void maxs(A& a, const B& b) { a = max(a, (A)b); }; //素因数分解 template<typename T> void factorize(T n, std::vector<std::pair<T, int>>& ans) { for (T i = 2; i * i <= n; ++i) { if (n % i != 0) continue; ans.emplace_back(i, 0); while (n % i == 0) { n /= i; ans.back().second++; } } if (n != 1) ans.emplace_back(n, 1); } int main() { ll N; cin >> N; vector<pair<ll, int>> v; factorize(N, v); ll tmp = 0; for (auto p : v) tmp ^= p.second; if (tmp != 0)PRI("Alice"); else PRI("Bob"); return 0; }