結果

問題 No.2 素因数ゲーム
ユーザー Luke LiLuke Li
提出日時 2022-04-03 17:28:57
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1,627 ms / 5,000 ms
コード長 588 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 29,568 KB
実行使用メモリ 121,984 KB
最終ジャッジ日時 2024-11-23 21:58:57
合計ジャッジ時間 52,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,623 ms
121,984 KB
testcase_01 AC 1,624 ms
121,984 KB
testcase_02 AC 1,625 ms
121,856 KB
testcase_03 AC 1,606 ms
121,856 KB
testcase_04 AC 1,589 ms
121,984 KB
testcase_05 AC 1,598 ms
121,856 KB
testcase_06 AC 1,593 ms
121,856 KB
testcase_07 AC 1,597 ms
121,856 KB
testcase_08 AC 1,618 ms
121,856 KB
testcase_09 AC 1,627 ms
121,856 KB
testcase_10 AC 1,607 ms
121,856 KB
testcase_11 AC 1,594 ms
121,856 KB
testcase_12 AC 1,615 ms
121,856 KB
testcase_13 AC 1,610 ms
121,856 KB
testcase_14 AC 1,609 ms
121,856 KB
testcase_15 AC 1,594 ms
121,856 KB
testcase_16 AC 1,588 ms
121,984 KB
testcase_17 AC 1,572 ms
121,984 KB
testcase_18 AC 1,579 ms
121,856 KB
testcase_19 AC 1,578 ms
121,856 KB
testcase_20 AC 1,592 ms
121,856 KB
testcase_21 AC 1,605 ms
121,856 KB
testcase_22 AC 1,582 ms
121,984 KB
testcase_23 AC 1,576 ms
121,856 KB
testcase_24 AC 1,582 ms
121,856 KB
testcase_25 AC 1,540 ms
121,856 KB
testcase_26 AC 1,554 ms
121,856 KB
testcase_27 AC 1,541 ms
121,856 KB
testcase_28 AC 1,559 ms
121,856 KB
testcase_29 AC 1,533 ms
121,856 KB
testcase_30 AC 1,569 ms
121,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include <stdbool.h>

bool mark[100000001];
int prime[100000001];
int primeSize;
void init()//sieve of Eratosthenes
{
	primeSize=0;
	for(int i = 2;i <= 100000000; i++)
	{
		if(mark[i] == true) continue;
		prime[primeSize++]=i;
		if(i >= 10000) continue;
		for(int j=i*i; j<=100000000; j+=i)
		{
			mark[j]=true;
		}
	}
} 
int main()
{
	init();
	int n, t = 0, s = 0;
	scanf("%d",&n);
	for(int i = 0; prime[i] <= n; i++){
		while(n%prime[i] == 0){
			n /= prime[i];
			t++;
		}
		s ^= t;
		t = 0;
	}
	if(s != 0){
		printf("Alice");
	}else{
		printf("Bob");
	}
	return 0;
}
0