結果

問題 No.2 素因数ゲーム
ユーザー moyashi_senpaimoyashi_senpai
提出日時 2016-08-18 21:35:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,457 ms / 5,000 ms
コード長 1,065 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 80,740 KB
実行使用メモリ 198,784 KB
最終ジャッジ日時 2024-06-08 00:31:51
合計ジャッジ時間 20,241 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 78 ms
27,520 KB
testcase_07 AC 89 ms
31,104 KB
testcase_08 AC 78 ms
28,672 KB
testcase_09 AC 1,457 ms
198,784 KB
testcase_10 AC 1,218 ms
169,516 KB
testcase_11 AC 479 ms
81,576 KB
testcase_12 AC 485 ms
81,280 KB
testcase_13 AC 1,150 ms
161,860 KB
testcase_14 AC 35 ms
17,876 KB
testcase_15 AC 227 ms
49,408 KB
testcase_16 AC 766 ms
116,864 KB
testcase_17 AC 1,249 ms
173,312 KB
testcase_18 AC 1,353 ms
186,088 KB
testcase_19 AC 694 ms
108,284 KB
testcase_20 AC 994 ms
143,360 KB
testcase_21 AC 1,417 ms
193,172 KB
testcase_22 AC 1,268 ms
177,740 KB
testcase_23 AC 506 ms
84,556 KB
testcase_24 AC 1,367 ms
186,624 KB
testcase_25 AC 955 ms
139,040 KB
testcase_26 AC 616 ms
98,712 KB
testcase_27 AC 249 ms
53,716 KB
testcase_28 AC 734 ms
112,240 KB
testcase_29 AC 552 ms
92,160 KB
testcase_30 AC 523 ms
86,272 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