結果

問題 No.7 プライムナンバーゲーム
ユーザー fujisufujisu
提出日時 2015-02-02 23:40:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 5,000 ms
コード長 2,933 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 78,556 KB
実行使用メモリ 40,072 KB
最終ジャッジ日時 2024-10-01 15:29:09
合計ジャッジ時間 4,918 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,160 KB
testcase_01 AC 51 ms
37,260 KB
testcase_02 AC 116 ms
40,048 KB
testcase_03 AC 81 ms
38,320 KB
testcase_04 AC 63 ms
36,904 KB
testcase_05 AC 61 ms
37,244 KB
testcase_06 AC 143 ms
39,532 KB
testcase_07 AC 124 ms
39,476 KB
testcase_08 AC 106 ms
39,420 KB
testcase_09 AC 161 ms
39,828 KB
testcase_10 AC 52 ms
37,248 KB
testcase_11 AC 126 ms
39,584 KB
testcase_12 AC 207 ms
39,704 KB
testcase_13 AC 208 ms
40,008 KB
testcase_14 AC 253 ms
40,072 KB
testcase_15 AC 243 ms
39,816 KB
testcase_16 AC 232 ms
39,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.Arrays;
import java.util.InputMismatchException;
import java.util.LinkedList;
import java.util.List;

public class Main {
	List<Integer> list;
	int[] dp;

	int dp(int k) {
		if (k < 2) {
			return 1;
		}
		if (dp[k] != 0) {
			return dp[k];
		}

		int res = -1;
		for (Integer m : list) {
			if (0 <= k - m) {
				if (dp(k - m) == -1) {
					res = 1;
					break;
				}
			} else {
				break;
			}
		}
		return dp[k] = res;
	}

	void run() {
		MyScanner sc = new MyScanner();
		int max = 10001;
		boolean[] prime = new boolean[max];
		Arrays.fill(prime, true);
		prime[0] = prime[1] = false;
		for (int i = 0; i * i <= max; i++) {
			if (prime[i]) {
				for (int j = i * i; j < max; j += i) {
					prime[j] = false;
				}
			}
		}

		list = new LinkedList<Integer>();
		for (int i = 0; i < max; i++) {
			if (prime[i]) {
				list.add(i);
			}
		}

		dp = new int[max];
		System.out.println(dp(sc.nextInt()) > 0 ? "Win" : "Lose");
	}

	public static void main(String[] args) {
		new Main().run();
	}

	public void mapDebug(int[][] a) {
		System.out.println("--------map display---------");
		for (int i = 0; i < a.length; i++) {
			for (int j = 0; j < a[i].length; j++) {
				System.out.printf("%3d ", a[i][j]);
			}
			System.out.println();
		}
		System.out.println("----------------------------" + '\n');
	}

	class MyScanner {
		int read() {
			try {
				return System.in.read();
			} catch (IOException e) {
				throw new InputMismatchException();
			}
		}

		boolean isSpaceChar(int c) {
			return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
		}

		boolean isEndline(int c) {
			return c == '\n' || c == '\r' || c == -1;
		}

		int nextInt() {
			return Integer.parseInt(next());
		}

		int[] nextIntArray(int n) {
			int[] array = new int[n];
			for (int i = 0; i < n; i++)
				array[i] = nextInt();
			return array;
		}

		long nextLong() {
			return Long.parseLong(next());
		}

		long[] nextLongArray(int n) {
			long[] array = new long[n];
			for (int i = 0; i < n; i++)
				array[i] = nextLong();
			return array;
		}

		double nextDouble() {
			return Double.parseDouble(next());
		}

		double[] nextDoubleArray(int n) {
			double[] array = new double[n];
			for (int i = 0; i < n; i++)
				array[i] = nextDouble();
			return array;
		}

		String next() {
			int c = read();
			while (isSpaceChar(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isSpaceChar(c));
			return res.toString();
		}

		String[] nextStringArray(int n) {
			String[] array = new String[n];
			for (int i = 0; i < n; i++)
				array[i] = next();

			return array;
		}

		String nextLine() {
			int c = read();
			while (isEndline(c))
				c = read();
			StringBuilder res = new StringBuilder();
			do {
				res.appendCodePoint(c);
				c = read();
			} while (!isEndline(c));
			return res.toString();
		}
	}
}
0