結果
問題 | No.2 素因数ゲーム |
ユーザー | FF256grhy |
提出日時 | 2015-05-03 22:31:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,203 bytes |
コンパイル時間 | 126 ms |
コンパイル使用メモリ | 23,680 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 17:45:55 |
合計ジャッジ時間 | 984 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 0 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 0 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 0 ms
5,376 KB |
testcase_26 | AC | 0 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:17:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%d", &n); | ~~~~~^~~~~~~~~~
ソースコード
// factorization を少し速くしてみた #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 <= i * i) { factor[cnt] = n; exponent[cnt]++; break; } } return; } int power(int x, int y) { if(y == 0) { return 1; } else { return x * power(x, y - 1); } }