結果
問題 | No.2 素因数ゲーム |
ユーザー | FF256grhy |
提出日時 | 2015-05-03 22:12:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 363 ms / 5,000 ms |
コード長 | 1,108 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 23,424 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-07 23:52:59 |
合計ジャッジ時間 | 1,926 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 0 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 0 ms
6,940 KB |
testcase_05 | AC | 0 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 10 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 205 ms
6,940 KB |
testcase_20 | AC | 135 ms
6,940 KB |
testcase_21 | AC | 363 ms
6,940 KB |
testcase_22 | AC | 10 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | AC | 1 ms
6,944 KB |
testcase_25 | AC | 8 ms
6,944 KB |
testcase_26 | AC | 0 ms
6,940 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | AC | 1 ms
6,944 KB |
testcase_30 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d", &n); | ~~~~~^~~~~~~~~~
ソースコード
#include <stdio.h> #define MAX 100000000 int judge(int); void factorization(int); int power(int, int); int memo[MAX + 1]; // memo[0] は使わない int factor[9]; // 2*...*23 > MAX (23は9番目の素数) int exponent[9]; // i番目の素因数の重複度 int main(void) { int n; scanf("%d", &n); factorization(n); memo[1] = -1; printf("%s\n", judge(n) == 1 ? "Alice" : "Bob"); return 0; } int judge(int n) { if(memo[n]) { return memo[n]; } int i, j; for(i = 0; i < 9; i++) { for(j = exponent[i]; 0 < j; j--) { // exponentは0初期化されてるから大丈夫 exponent[i] -= j; int result = judge( n / power(factor[i], j) ); exponent[i] += j; if( result == -1 ) { memo[n] = 1; return memo[n]; } } } memo[n] = -1; return memo[n]; } void factorization(int n) { int i, cnt = 0; for(i = 2; i <= MAX; i++) { if(n % i == 0) { factor[cnt] = i; while(n % i == 0) { n /= i; exponent[cnt]++; } cnt++; } if(n == 1) { break; } } return; } int power(int x, int y) { if(y == 0) { return 1; } else { return x * power(x, y - 1); } }