結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | ryo ryo |
提出日時 | 2023-08-16 16:26:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 332 bytes |
コンパイル時間 | 306 ms |
コンパイル使用メモリ | 32,756 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 00:21:39 |
合計ジャッジ時間 | 2,560 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 10 ms
5,376 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | AC | 9 ms
5,376 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
#include<stdio.h> #include<stdlib.h> int main(){ int p[1300]={},w[10001]={},n,s=0,i,j; scanf("%d",&n); for(i=2;i<=n;i++){ for(j=0;p[j]&&i%p[j];j++); if(!p[j])p[s++]=i; } // for(int i=0;i<=n;i++)printf("%d ",p[i]); for(i=2;i<=n;i++){ for(s=j=0;p[j]<=i;j++)s+=w[i-p[j]]; w[i]=!s; } puts(w[n]?"Lose":"Win"); }