結果

問題 No.2 素因数ゲーム
ユーザー はまやんはまやん
提出日時 2017-03-01 15:02:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 600 bytes
コンパイル時間 1,930 ms
コンパイル使用メモリ 174,580 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 12:55:32
合計ジャッジ時間 3,052 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)




typedef long long ll;
map<ll, int> enumpr(ll n) {
	map<ll, int> V;
	for (ll i = 2; i*i <= n; i++) while (n%i == 0) V[i]++, n /= i;
	if (n>1) V[n]++;
	return V;
}
//-----------------------------------------------------------------
int N;
//-----------------------------------------------------------------
int main() {
	cin >> N;

	auto m = enumpr(N);
	int g = 0;
	for (auto p : m) {
		//printf("%lld %d\n", p.first, p.second);
		g = g ^ p.second;
	}

	if (g != 0)
		printf("Alice\n");
	else
		printf("Bob\n");
}
0