結果

問題 No.2 素因数ゲーム
ユーザー moyashi_senpaimoyashi_senpai
提出日時 2016-08-18 21:35:44
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1,520 ms / 5,000 ms
コード長 1,065 bytes
コンパイル時間 847 ms
コンパイル使用メモリ 78,840 KB
実行使用メモリ 198,656 KB
最終ジャッジ日時 2024-12-26 12:46:00
合計ジャッジ時間 22,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 99 ms
27,392 KB
testcase_07 AC 110 ms
30,976 KB
testcase_08 AC 97 ms
28,416 KB
testcase_09 AC 1,520 ms
198,656 KB
testcase_10 AC 1,355 ms
169,472 KB
testcase_11 AC 518 ms
81,536 KB
testcase_12 AC 519 ms
81,152 KB
testcase_13 AC 1,187 ms
161,792 KB
testcase_14 AC 49 ms
17,536 KB
testcase_15 AC 236 ms
49,280 KB
testcase_16 AC 782 ms
116,736 KB
testcase_17 AC 1,300 ms
173,312 KB
testcase_18 AC 1,389 ms
186,112 KB
testcase_19 AC 780 ms
108,160 KB
testcase_20 AC 1,014 ms
143,360 KB
testcase_21 AC 1,480 ms
193,024 KB
testcase_22 AC 1,339 ms
177,664 KB
testcase_23 AC 556 ms
84,608 KB
testcase_24 AC 1,390 ms
186,624 KB
testcase_25 AC 1,012 ms
139,008 KB
testcase_26 AC 661 ms
98,688 KB
testcase_27 AC 288 ms
53,760 KB
testcase_28 AC 798 ms
112,000 KB
testcase_29 AC 618 ms
92,032 KB
testcase_30 AC 569 ms
86,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:44:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   44 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <cmath>
#include <cstring>
#include <numeric>
#include <algorithm>
#include <functional>
#include <array>
#include <map>
#include <queue>
#include <limits.h>
#include <set>
#include <stack>
#define REP(i,n) for(int i = 0; n > i; i++)

using namespace std;
typedef vector<int> Ivec;
typedef pair<int, int> pii;
int arr[50000000];

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;
			}
		}
	}
	int cou = 0;
	for (int i = 2; N >= i; i++) {
		if (arr[i]) {
			arr[cou] = i;
			cou++;
		}
	}
}
int main() {
	int n;
	int ans = 0,count = 0;
	scanf("%d", &n);
	Eratosthenes(n / 2 + 1);
	int cur = 0;
	while(n != 1) {
		if (arr[cur] <= 1) {
			count = 1;
			break;
		}
		else if (!(n%arr[cur])) {
			count++;
			n /= arr[cur];
		}
		else {
			ans = ans^count;
			count = 0;
			cur++;
		}
	}
	ans = ans^count;
	printf("%s\n", ans ? "Alice" : "Bob ");
	return 0;
}
0