結果

問題 No.7 プライムナンバーゲーム
ユーザー shinshin
提出日時 2022-05-17 17:34:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 1,024 bytes
コンパイル時間 4,482 ms
コンパイル使用メモリ 78,668 KB
実行使用メモリ 38,896 KB
最終ジャッジ日時 2024-10-01 16:47:17
合計ジャッジ時間 5,836 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,456 KB
testcase_01 AC 47 ms
36,852 KB
testcase_02 AC 81 ms
38,720 KB
testcase_03 AC 59 ms
37,336 KB
testcase_04 AC 52 ms
37,096 KB
testcase_05 AC 52 ms
37,112 KB
testcase_06 AC 82 ms
37,752 KB
testcase_07 AC 78 ms
37,620 KB
testcase_08 AC 70 ms
37,400 KB
testcase_09 AC 87 ms
37,912 KB
testcase_10 AC 50 ms
36,780 KB
testcase_11 AC 79 ms
37,720 KB
testcase_12 AC 78 ms
38,608 KB
testcase_13 AC 80 ms
38,700 KB
testcase_14 AC 83 ms
38,636 KB
testcase_15 AC 84 ms
38,808 KB
testcase_16 AC 81 ms
38,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class No7 {

	public static void main(String[] args) throws IOException{
		//プライムナンバー
		int N = Integer.parseInt(readStr()[0]) , i , k;
		int[] w = new int[N+1];
		w[0] = 1;
		w[1] = 1;
		ArrayList<Integer> list = new ArrayList<>();
		
		for(i = 2;i <= N;i++) {
			if(w[i] == 0) {
				list.add(i);
				for(k = 2;k <= N/i;k++) {
					w[i * k] = 1;
				}
			}
			w[i] = 0;
			for(k = list.size() - 1;k >= 0;k--) {
				if(w[i - list.get(k)] == 0) {
					w[i] = 1;
					break;
				}
			}
		}
		System.out.println(w[N] == 1 ? "Win" : "Lose");

	}

	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}
}
0