結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,260 ms
121,984 KB
testcase_01 AC 1,261 ms
121,856 KB
testcase_02 AC 1,254 ms
121,856 KB
testcase_03 AC 1,247 ms
121,856 KB
testcase_04 AC 1,254 ms
121,856 KB
testcase_05 AC 1,315 ms
121,984 KB
testcase_06 AC 1,260 ms
121,856 KB
testcase_07 AC 1,267 ms
121,856 KB
testcase_08 AC 1,275 ms
121,856 KB
testcase_09 AC 1,265 ms
121,856 KB
testcase_10 AC 1,282 ms
121,856 KB
testcase_11 AC 1,287 ms
121,856 KB
testcase_12 AC 1,303 ms
121,984 KB
testcase_13 AC 1,285 ms
121,984 KB
testcase_14 AC 1,292 ms
121,856 KB
testcase_15 AC 1,280 ms
121,984 KB
testcase_16 AC 1,287 ms
121,856 KB
testcase_17 AC 1,274 ms
121,984 KB
testcase_18 AC 1,285 ms
121,856 KB
testcase_19 AC 1,340 ms
121,856 KB
testcase_20 AC 1,287 ms
121,856 KB
testcase_21 AC 1,281 ms
121,984 KB
testcase_22 AC 1,285 ms
121,856 KB
testcase_23 AC 1,278 ms
121,984 KB
testcase_24 AC 1,312 ms
121,856 KB
testcase_25 AC 1,265 ms
121,856 KB
testcase_26 AC 1,284 ms
121,984 KB
testcase_27 AC 1,264 ms
121,856 KB
testcase_28 AC 1,259 ms
121,984 KB
testcase_29 AC 1,284 ms
121,856 KB
testcase_30 AC 1,275 ms
121,984 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