結果

問題 No.2 素因数ゲーム
ユーザー はまやんはまやん
提出日時 2017-03-01 01:33:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 483 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 172,240 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 12:55:12
合計ジャッジ時間 3,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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 nim = 0;
	for (auto p : m) nim ^= p.second;


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