結果

問題 No.2 素因数ゲーム
ユーザー neckrawarmerneckrawarmer
提出日時 2021-10-06 14:10:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,032 ms / 5,000 ms
コード長 961 bytes
コンパイル時間 4,516 ms
コンパイル使用メモリ 267,432 KB
実行使用メモリ 426,816 KB
最終ジャッジ日時 2024-07-23 02:52:21
合計ジャッジ時間 19,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 126 ms
57,032 KB
testcase_07 AC 143 ms
63,960 KB
testcase_08 AC 129 ms
58,680 KB
testcase_09 AC 1,032 ms
426,816 KB
testcase_10 AC 840 ms
369,288 KB
testcase_11 AC 391 ms
177,296 KB
testcase_12 AC 392 ms
175,640 KB
testcase_13 AC 799 ms
353,460 KB
testcase_14 AC 72 ms
33,868 KB
testcase_15 AC 234 ms
103,888 KB
testcase_16 AC 570 ms
247,032 KB
testcase_17 AC 854 ms
375,976 KB
testcase_18 AC 942 ms
401,940 KB
testcase_19 AC 523 ms
230,488 KB
testcase_20 AC 705 ms
316,380 KB
testcase_21 AC 969 ms
415,568 KB
testcase_22 AC 879 ms
384,876 KB
testcase_23 AC 411 ms
182,872 KB
testcase_24 AC 941 ms
402,460 KB
testcase_25 AC 677 ms
292,508 KB
testcase_26 AC 477 ms
211,284 KB
testcase_27 AC 251 ms
113,216 KB
testcase_28 AC 541 ms
238,160 KB
testcase_29 AC 447 ms
197,596 KB
testcase_30 AC 416 ms
185,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
using mint = modint1000000007;
#endif
using ll = long long;
using ld = long double;
const ll INF = 1ll<<60;
const ld EPS = 1.0/1e9;
#define endl "\n"
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define fore(i,a) for(auto &i:a)
#define all(x) (x).begin(),(x).end()
#define del(x) sort(all(x)); x.erase(unique(all(x)),x.end());

int main(){
  ios_base::sync_with_stdio(0);
  cin.tie(0);
  ll n; cin >> n;
  vector<int>lp(n+1);
  vector<int>pr;
  for(int i=2;i<=n;i++){
    if(lp[i]==0){
      lp[i]=i;
      pr.push_back(i);
    }
    for(int j=0;j<(int)pr.size() && pr[j]<=lp[i] && i*pr[j]<=n;j++){
      lp[i*pr[j]]=pr[j];
    }
  }
  map<int,int>mp;
  while(n!=1){
    mp[lp[n]]++; n/=lp[n];
  }
  ll XOR=0;
  fore(c,mp){
    XOR^=c.second;
  }
  if(XOR) cout << "Alice";
  else cout << "Bob";
}
0