結果

問題 No.7 プライムナンバーゲーム
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-03 21:18:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 314 ms / 5,000 ms
コード長 997 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 77,720 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-10-01 15:50:41
合計ジャッジ時間 6,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,900 KB
testcase_01 AC 130 ms
54,084 KB
testcase_02 AC 314 ms
54,308 KB
testcase_03 AC 152 ms
54,052 KB
testcase_04 AC 142 ms
54,060 KB
testcase_05 AC 130 ms
53,240 KB
testcase_06 AC 198 ms
54,144 KB
testcase_07 AC 167 ms
53,912 KB
testcase_08 AC 139 ms
53,096 KB
testcase_09 AC 219 ms
54,188 KB
testcase_10 AC 113 ms
52,856 KB
testcase_11 AC 163 ms
53,920 KB
testcase_12 AC 263 ms
53,924 KB
testcase_13 AC 294 ms
53,936 KB
testcase_14 AC 314 ms
54,344 KB
testcase_15 AC 295 ms
53,944 KB
testcase_16 AC 295 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        boolean [] b = new boolean [N+1];
        ArrayList<Integer> prime = new ArrayList<Integer>();
        for(int i=2; i<=N; i++){
            if(b[i]==false){
                prime.add(i);
                for(int j=2; j<=N; j++){
                    if(j%i==0){
                        b[j]=true;
                    }
                }
            }
        }
        boolean [] WL = new boolean [N+1];
        WL[0]=WL[1]=true;
        for(int i=4; i<=N; i++){
            for(int j=prime.size()-1; j>=0; j--){
                if(prime.get(j)<i){
                    if(WL[i-prime.get(j)]==false){
                        WL[i]=true;
                    }
                }
            }
        }
        if(WL[N]){
            System.out.println("Win");
        }else{
            System.out.println("Lose");
        }
    }
}
0