結果

問題 No.726 Tree Game
ユーザー YamaKasaYamaKasa
提出日時 2018-08-24 21:59:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-06-23 07:20:15
合計ジャッジ時間 6,302 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,152 KB
testcase_01 AC 121 ms
40,936 KB
testcase_02 AC 127 ms
41,168 KB
testcase_03 AC 117 ms
39,800 KB
testcase_04 AC 122 ms
40,744 KB
testcase_05 AC 124 ms
40,824 KB
testcase_06 AC 111 ms
40,052 KB
testcase_07 AC 120 ms
39,860 KB
testcase_08 AC 128 ms
41,448 KB
testcase_09 AC 128 ms
41,256 KB
testcase_10 AC 109 ms
39,984 KB
testcase_11 AC 121 ms
41,004 KB
testcase_12 AC 125 ms
41,032 KB
testcase_13 AC 132 ms
41,764 KB
testcase_14 AC 124 ms
40,876 KB
testcase_15 AC 126 ms
40,760 KB
testcase_16 AC 126 ms
40,868 KB
testcase_17 AC 124 ms
40,796 KB
testcase_18 AC 122 ms
39,880 KB
testcase_19 AC 105 ms
40,208 KB
testcase_20 AC 116 ms
39,844 KB
testcase_21 AC 123 ms
40,512 KB
testcase_22 AC 129 ms
40,896 KB
testcase_23 AC 133 ms
40,996 KB
testcase_24 AC 123 ms
40,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long Y = scan.nextLong();
		long X = scan.nextLong();
		scan.close();
		long pX = X + 1;
		long pY = Y + 1;
		while(!isPrime(pX)) {
			pX ++;
		}
		while(!isPrime(pY)) {
			pY ++;
		}
		long k = pX - X + pY - Y - 2;
		if(isPrime(Y) && isPrime(X)) {
			System.out.println("Second");
			System.exit(0);
		}else if((isPrime(Y) && isPrime(Y + 1)) || isPrime(X) && isPrime(X + 1)){
			System.out.println("Second");
			System.exit(0);
		}
		if(k % 2 == 0) {
			System.out.println("Second");
		}else {
			System.out.println("First");
		}

	}
	public static boolean isPrime(long n) {
		if(n < 2) return false;
		if(n == 2) return true;
		if(n % 2 == 0) return false;
        for(long i = 3; i <= (long)Math.sqrt(n); i += 2){
            if(n % i == 0) {
                return false;
            }
        }
        return true;
    }
}
0