結果
問題 | No.7 プライムナンバーゲーム |
ユーザー |
![]() |
提出日時 | 2016-07-17 16:48:56 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 13 ms / 5,000 ms |
コード長 | 632 bytes |
コンパイル時間 | 493 ms |
コンパイル使用メモリ | 59,652 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 15:47:05 |
合計ジャッジ時間 | 1,299 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:36:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 36 | scanf("%d",&n); | ~~~~~^~~~~~~~~
ソースコード
#include <iostream> #include <vector> #include <stdio.h> bool isP(int n){ if(n<2)return false; for(int i=2;i*i<=n;i++){ if(n%i==0)return false; } return true; } int main() { // your code goes here bool loss[10001]; loss[0]=false; loss[1]=false; std::vector<int> vec; for(int i=2;i<=10000;i++){ if(isP(i)){ vec.push_back(i); } } for(int i=2;i<=10000;i++){ bool isV=false; for(int j=0;(j<vec.size())&&(vec[j]<=i);j++){ int p=vec[j]; isV=(isV||loss[i-p]); } if(isV==true){ loss[i]=false; }else{ loss[i]=true; } } int n; scanf("%d",&n); printf("%s\n",loss[n]?"Lose":"Win"); return 0; }