結果

問題 No.2 素因数ゲーム
ユーザー J31831276J31831276
提出日時 2018-12-30 03:18:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,380 ms / 5,000 ms
コード長 815 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 62,392 KB
実行使用メモリ 416,640 KB
最終ジャッジ日時 2024-06-08 01:00:42
合計ジャッジ時間 98,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,014 ms
416,640 KB
testcase_01 AC 3,031 ms
416,640 KB
testcase_02 AC 3,023 ms
416,640 KB
testcase_03 AC 3,007 ms
416,640 KB
testcase_04 AC 3,012 ms
416,512 KB
testcase_05 AC 3,019 ms
416,512 KB
testcase_06 AC 3,380 ms
416,640 KB
testcase_07 AC 2,989 ms
416,512 KB
testcase_08 AC 3,037 ms
416,512 KB
testcase_09 AC 3,021 ms
416,512 KB
testcase_10 AC 3,008 ms
416,384 KB
testcase_11 AC 3,013 ms
416,512 KB
testcase_12 AC 3,049 ms
416,640 KB
testcase_13 AC 2,983 ms
416,640 KB
testcase_14 AC 3,008 ms
416,640 KB
testcase_15 AC 2,983 ms
416,512 KB
testcase_16 AC 2,996 ms
416,512 KB
testcase_17 AC 3,019 ms
416,640 KB
testcase_18 AC 3,014 ms
416,512 KB
testcase_19 AC 3,026 ms
416,512 KB
testcase_20 AC 3,029 ms
416,512 KB
testcase_21 AC 3,027 ms
416,512 KB
testcase_22 AC 3,039 ms
416,640 KB
testcase_23 AC 3,013 ms
416,640 KB
testcase_24 AC 3,000 ms
416,512 KB
testcase_25 AC 3,015 ms
416,512 KB
testcase_26 AC 3,011 ms
416,512 KB
testcase_27 AC 2,989 ms
416,512 KB
testcase_28 AC 3,005 ms
416,640 KB
testcase_29 AC 3,033 ms
416,640 KB
testcase_30 AC 3,008 ms
416,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <string>
#include <cmath>

#define ll long long

using namespace std;

int prime[6000000];
int arr[100000000];
int cnt=0;
void Eratosthenes(int N){

	for(int i = 0; i < N; i++) arr[i] = 1;
	
	for(int i = 2; i < sqrt(N); i++)
		if(arr[i]){
			for(int j = 0; i * (j + 2) < N; j++){
				arr[i *(j + 2)] = 0;
			}
	    }

	for(int i = 2; i < N; i++)
		if(arr[i]) prime[cnt++]=i;
}

int nim[100000000];
int main(){

   int n;
   cin>>n;
   Eratosthenes(100000000);
      
   int t=0;
   while(true){
       while(n%prime[t]==0){
           nim[t]++;
           n/=prime[t];
       }
       t++;
       if(n==1) break;
   }
   
   int ans=0;
   for(int i=0;i<t;++i) ans^=nim[i];
   if(ans) cout<<"Alice"<<endl;
   else cout<<"Bob"<<endl;

   return 0;
}
0