結果

問題 No.7 プライムナンバーゲーム
ユーザー SagTokiSagToki
提出日時 2018-05-23 14:01:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,617 bytes
コンパイル時間 5,442 ms
コンパイル使用メモリ 79,236 KB
実行使用メモリ 56,028 KB
最終ジャッジ日時 2024-06-28 16:17:42
合計ジャッジ時間 6,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,440 KB
testcase_01 AC 138 ms
41,024 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 132 ms
41,360 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 155 ms
41,020 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 156 ms
41,548 KB
testcase_14 AC 167 ms
41,532 KB
testcase_15 AC 170 ms
41,308 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Collections;

import java.util.InputMismatchException;

public class PrimeNumber {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
            //Nを入力して範囲が指定通りかを調べる
            int N = scanner.nextInt();
            if(N < 2 || N > 10000){
                System.out.println("Nは2以上10000以下の数字で入力してください");
                System.exit(0);
            }
            
            //リストに2~Nの素数数を入れる
            ArrayList<Integer> PrimeNumber = new ArrayList<>();
            for(int i = 2; i <= N ; i++){
                for(int j = 2 ;( i % j != 0 && j < i) || j == i ; j++){
                    if(j == i){
                        PrimeNumber.add(i);
                    }
                }
            }
            //素数を入れたリストを降順でソートする
            Collections.reverse(PrimeNumber);
            
            for(int j = 0 ; j < PrimeNumber.size() ; j++){
                if(N - PrimeNumber.get(j) == 2
                        || N - PrimeNumber.get(j) == 3){
                    System.out.println("Win");
                    System.exit(0);
                }
            }
            System.out.println("Lose"); 
            
            
        }catch(InputMismatchException e){
            System.out.println("数字を入力してください");
        }catch(Exception E){
            System.out.println("予期せぬエラーです");
        }
    }
}
0