結果
問題 |
No.2 素因数ゲーム
|
ユーザー |
![]() |
提出日時 | 2017-03-01 15:20:06 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 507 bytes |
コンパイル時間 | 2,215 ms |
コンパイル使用メモリ | 172,936 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-26 12:55:41 |
合計ジャッジ時間 | 2,956 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#include <bits/stdc++.h> #define REP(i,n,N) for(int i=n;i<N;i++) #define p(S) cout<<(S)<<endl #define ck(a,b) (0<=(a)&&(a)<b) typedef long long ll; using namespace std; 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 main(){ ll n; cin>>n; auto m = enumpr(n); int g=0; for(auto p:m){//Nim g=g^p.second; } if(g!=0) cout<<"Alice"<<endl; else cout<<"Bob"<<endl; return 0; }