結果

問題 No.7 プライムナンバーゲーム
ユーザー dogwood0424dogwood0424
提出日時 2017-12-12 21:31:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 1,069 bytes
コンパイル時間 3,297 ms
コンパイル使用メモリ 79,236 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-10-01 16:07:51
合計ジャッジ時間 6,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,112 KB
testcase_01 AC 104 ms
41,272 KB
testcase_02 AC 143 ms
40,980 KB
testcase_03 AC 121 ms
40,568 KB
testcase_04 AC 120 ms
41,056 KB
testcase_05 AC 118 ms
41,072 KB
testcase_06 AC 135 ms
41,308 KB
testcase_07 AC 121 ms
40,572 KB
testcase_08 AC 133 ms
41,212 KB
testcase_09 AC 122 ms
40,848 KB
testcase_10 AC 111 ms
41,192 KB
testcase_11 AC 134 ms
41,212 KB
testcase_12 AC 140 ms
41,284 KB
testcase_13 AC 125 ms
41,428 KB
testcase_14 AC 143 ms
41,388 KB
testcase_15 AC 138 ms
40,860 KB
testcase_16 AC 136 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class No7 {
	public static void main(String[]args) {
		Scanner sc=new Scanner(System.in);
		int n = sc.nextInt();
		//n以下の素数をstackに格納開始
		ArrayList<Integer> stack=new ArrayList<Integer>();	 //スタック
		int max = (int)Math.floor(Math.sqrt(n));
		boolean []boo=new boolean[n+1];
		Arrays.fill(boo,true);
		boo[0]=false;
		boo[1]=false;
		for(int i=2;i<=max;i++) {
			if(boo[i]==true) {
				for(int j=i*2;j<=n;j+=i) {
					boo[j]=false;
				}
			}
		}
		for(int i=0;i<n+1;i++) {
			if(boo[i]==true) {
				stack.add(i);
				}
		}
		//終了


		boolean []v=new boolean[n+1];		//nのとき勝てるならtrue負けるならfalse
		Arrays.fill(v,false);
		v[0]=v[1]=true;
		for(int i=2;i<=n;i++) {
			for(int j=0;j<stack.size();j++) {
				if(stack.get(j)<=i) {
					if(!v[i-stack.get(j)]) {
						v[i]=true;
						break;
					}
				}
			}
			
		}

		if(v[n]) {
			System.out.println("Win");
		}
		else {
			System.out.println("Lose");
		}



		sc.close();
	}

}
0