結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | core123 |
提出日時 | 2019-04-17 15:44:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 156 ms / 5,000 ms |
コード長 | 1,650 bytes |
コンパイル時間 | 2,328 ms |
コンパイル使用メモリ | 79,840 KB |
実行使用メモリ | 54,376 KB |
最終ジャッジ日時 | 2024-10-01 16:19:40 |
合計ジャッジ時間 | 5,117 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
54,108 KB |
testcase_01 | AC | 111 ms
54,036 KB |
testcase_02 | AC | 156 ms
54,376 KB |
testcase_03 | AC | 132 ms
54,264 KB |
testcase_04 | AC | 118 ms
53,048 KB |
testcase_05 | AC | 119 ms
53,168 KB |
testcase_06 | AC | 143 ms
53,972 KB |
testcase_07 | AC | 134 ms
54,144 KB |
testcase_08 | AC | 122 ms
53,568 KB |
testcase_09 | AC | 120 ms
53,340 KB |
testcase_10 | AC | 113 ms
53,852 KB |
testcase_11 | AC | 118 ms
53,072 KB |
testcase_12 | AC | 142 ms
54,260 KB |
testcase_13 | AC | 126 ms
53,200 KB |
testcase_14 | AC | 150 ms
54,036 KB |
testcase_15 | AC | 147 ms
53,868 KB |
testcase_16 | AC | 144 ms
53,992 KB |
ソースコード
import java.util.*; import java.util.stream.*; import static java.lang.Math.*; public class Main{ public static void main(String... args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); boolean[] isPrime=new boolean[n+1]; Arrays.fill(isPrime,true); isPrime[0]=false; isPrime[1]=false; for(int i=2;i<isPrime.length;i++){ for(int j=i*2;j<isPrime.length;j+=i){ isPrime[j]=false; } } List<Integer> primes=new ArrayList<>(); for(int i=0;i<isPrime.length;i++){ if(isPrime[i]) primes.add(i); } //put(primes); boolean[] isWin =new boolean[n+1]; for(int i=4;i<isWin.length;i++){ //put(Arrays.toString(isWin)); boolean flag=true; for(int j=0;j<primes.size();j++){ int index=i-primes.get(j); if(index<2)break; flag&=isWin[index]; } //put(flag); if(!flag){ isWin[i]=true; }else{ isWin[i]=false; } } //put(Arrays.toString(isWin)); if(isWin[n]){ put("Win"); }else{ put("Lose"); } } public static class Pair{ final int x,y; Pair(int x,int y){ this.x=x; this.y=y; } @Override public String toString(){ return String.format("Pair(%d,%d)",x,y); } } public static void print(Object object){ System.out.print(object); } public static void put(Object object) { System.out.println(object); } public static void put(){ System.out.println(); } public static void print(String format,Object... args){ System.out.print(String.format(format,args)); } public static void put(String format,Object... args) { System.out.println(String.format(format,args)); } }