結果

問題 No.7 プライムナンバーゲーム
ユーザー rf141rf141
提出日時 2015-12-20 09:40:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 5,000 ms
コード長 1,177 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 79,056 KB
実行使用メモリ 54,624 KB
最終ジャッジ日時 2024-10-01 15:39:34
合計ジャッジ時間 5,614 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,912 KB
testcase_01 AC 107 ms
52,968 KB
testcase_02 AC 208 ms
54,236 KB
testcase_03 AC 135 ms
54,496 KB
testcase_04 AC 116 ms
53,400 KB
testcase_05 AC 138 ms
54,624 KB
testcase_06 AC 159 ms
54,104 KB
testcase_07 AC 150 ms
54,524 KB
testcase_08 AC 141 ms
54,164 KB
testcase_09 AC 169 ms
53,948 KB
testcase_10 AC 111 ms
52,948 KB
testcase_11 AC 157 ms
54,188 KB
testcase_12 AC 194 ms
54,160 KB
testcase_13 AC 201 ms
54,300 KB
testcase_14 AC 212 ms
53,940 KB
testcase_15 AC 218 ms
53,952 KB
testcase_16 AC 225 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
public class Main{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		System.out.println(Calc(n));
	}

	public static String Calc(int n){
		LinkedList<Integer> prime = eratosthenes(n);
		boolean[] judge = new boolean[n+1];
		judge[0] = true;
		judge[1] = true;
		for(int i = 4; i <= n; i++){
			for(int p:prime){
				if(0<=i-p && !judge[i-p])judge[i] = true;
			}
		}
		return (judge[n])?"Win":"Lose";
	}

	public static LinkedList<Integer> eratosthenes(int n){
		LinkedList<Integer> list = new LinkedList<Integer>();
		LinkedList<Integer> result = new LinkedList<Integer>();
		list.add(2);
		for(int i = 3; i <= n;i+=2){
			list.add(i);
		}

		double limit = Math.sqrt(n);
		double  head = 0.0;
		int nowHead;
		while(head < limit){
			head = (double)list.get(0);
			nowHead = (int)head;
			result.add(nowHead);
			for(Iterator<Integer> it = list.iterator(); it.hasNext();){
				int num = it.next();
				if(num%nowHead == 0){
					it.remove();
				}
			}
		}

		for(Iterator<Integer> it = list.iterator(); it.hasNext();){
			result.add(it.next());
		}

		return result;
	}


}
0