結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | Onju |
提出日時 | 2015-02-08 20:54:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 906 bytes |
コンパイル時間 | 608 ms |
コンパイル使用メモリ | 59,224 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-23 06:51:59 |
合計ジャッジ時間 | 4,114 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘bool* calcPrime()’: main.cpp:32:16: warning: address of local variable ‘list’ returned [-Wreturn-local-addr] 32 | return list; | ^~~~ main.cpp:16:14: note: declared here 16 | bool list[N_MAX + 1]; | ^~~~
ソースコード
#include <iostream> #include <cmath> #include <cstring> #define N_MAX 10000 using namespace std; enum eANS { ANS_NONE, ANS_WIN, ANS_LOSE }; bool* calcPrime() { bool list[N_MAX + 1]; int sqrtnmax = sqrt(N_MAX); for (int i = 2; i <= N_MAX; ++i) list[i] = true; for (int i = 2; i <= sqrtnmax; ++i) { if (list[i]) { int jmax = N_MAX / i; for (int j = i; j <= jmax; ++j) list[i*j] = false; } } return list; } int main() { auto prime = calcPrime(); eANS ans[N_MAX + 1]; int N; cin >> N; memset(ans, ANS_NONE, sizeof(eANS)*(N_MAX + 1)); ans[0] = ans[1] = ANS_WIN; for (int i = 2; i <= N; ++i) { for (int j = 2; j < i; ++j) { if (prime[j] && (ans[i - j] == ANS_LOSE)) { ans[i] = ANS_WIN; break; } } if (ans[i] == ANS_NONE) ans[i] = ANS_LOSE; } if (ans[N] == ANS_WIN) cout << "Win" << endl; else cout << "Lose" << endl; return 0; }