結果

問題 No.7 プライムナンバーゲーム
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-21 12:21:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 3,672 ms / 5,000 ms
コード長 1,414 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 77,940 KB
実行使用メモリ 48,160 KB
最終ジャッジ日時 2024-10-01 15:32:20
合計ジャッジ時間 23,433 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,700 KB
testcase_01 AC 133 ms
41,308 KB
testcase_02 AC 3,671 ms
41,568 KB
testcase_03 AC 188 ms
41,724 KB
testcase_04 AC 146 ms
41,624 KB
testcase_05 AC 146 ms
41,332 KB
testcase_06 AC 655 ms
41,484 KB
testcase_07 AC 408 ms
40,764 KB
testcase_08 AC 219 ms
48,160 KB
testcase_09 AC 1,125 ms
41,528 KB
testcase_10 AC 119 ms
40,332 KB
testcase_11 AC 432 ms
41,300 KB
testcase_12 AC 2,217 ms
41,340 KB
testcase_13 AC 892 ms
41,512 KB
testcase_14 AC 3,672 ms
41,608 KB
testcase_15 AC 3,373 ms
48,068 KB
testcase_16 AC 2,976 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int[] prime = new int[1300];
        int ptr = 0;
        prime[ptr++]=2;
        prime[ptr++]=3;
        
        for(int i=5; i<n; i+=2){
            boolean wflag = false;
            for(int j=0; j<ptr; j++){
                if(i%prime[j]==0){
                    wflag=true;
                    break;
                }
            }
            if(!wflag){
                prime[ptr++]=i;
            }
        }
        
        int[] kachi = new int[1400];
        int ka = 0;
        kachi[ka++]=2;
        kachi[ka++]=3;
        for(int i=4; i<=n; i++){
            boolean kflag = false;
loop1:      for(int j=0; j<ptr; j++){
                for(int k=0; k<ka; k++){
                    if(i-prime[j]==kachi[k]){
                        kflag = true;
                        break loop1;
                    }
                }
            }
            if(!kflag){
                kachi[ka++]=i;
            }
        }
        ArrayList<Integer> kac = new ArrayList<Integer>();
        for(int i=0; i<ka; i++){
            kac.add(kachi[i]);
        }
        if(kac.contains(n)){
            System.out.println("Lose");
        }else{
            System.out.println("Win");
        }
    }
}
        
        
0