結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | holeguma |
提出日時 | 2015-07-26 03:52:51 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 624 bytes |
コンパイル時間 | 1,805 ms |
コンパイル使用メモリ | 77,932 KB |
実行使用メモリ | 37,056 KB |
最終ジャッジ日時 | 2024-07-08 14:01:04 |
合計ジャッジ時間 | 3,172 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
import java.io.*; import java.util.Arrays; class Main{ public static void main(String[] args) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String line=""; boolean[] p=new boolean[10001]; Arrays.fill(p,true); p[0]=false; p[1]=false; for(int i=2;i<=Math.sqrt(10000);i++){ if(p[i]){ for(int j=i+i;i<=10000;j+=i){ p[j]=false; } } } while((line=br.readLine())!=null){ int n=Integer.parseInt(line); int[] dp=new int[10001]; dp[0]=0; dp[1]=0; for(int i=2;i<=n;i++){ for(int j=2;j<=i;j++){ if(p[i-j]&&dp[i-j]==1){ dp[i]=1; break; } } } System.out.println(dp[n]==1?"Win":"Lose"); } } }