結果

問題 No.7 プライムナンバーゲーム
ユーザー holegumaholeguma
提出日時 2015-07-26 04:01:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 77,956 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-10-01 15:34:38
合計ジャッジ時間 3,864 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
40,768 KB
testcase_01 AC 49 ms
40,740 KB
testcase_02 AC 87 ms
41,424 KB
testcase_03 AC 60 ms
40,472 KB
testcase_04 AC 52 ms
40,504 KB
testcase_05 AC 53 ms
40,224 KB
testcase_06 AC 71 ms
41,348 KB
testcase_07 AC 68 ms
41,680 KB
testcase_08 AC 65 ms
40,796 KB
testcase_09 AC 74 ms
41,476 KB
testcase_10 AC 48 ms
40,588 KB
testcase_11 AC 67 ms
41,728 KB
testcase_12 AC 83 ms
41,272 KB
testcase_13 AC 84 ms
41,292 KB
testcase_14 AC 92 ms
41,540 KB
testcase_15 AC 88 ms
41,560 KB
testcase_16 AC 88 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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;j<=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[j]==0){
dp[i]=1;
break;
}
}
}
System.out.println(dp[n]==1?"Win":"Lose");
}
}
}
0