結果

問題 No.726 Tree Game
ユーザー YamaKasaYamaKasa
提出日時 2018-08-24 21:43:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 2,619 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-06-23 06:58:00
合計ジャッジ時間 7,330 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,444 KB
testcase_01 AC 135 ms
41,128 KB
testcase_02 AC 131 ms
40,940 KB
testcase_03 AC 133 ms
41,264 KB
testcase_04 AC 118 ms
40,308 KB
testcase_05 AC 132 ms
41,240 KB
testcase_06 AC 133 ms
41,264 KB
testcase_07 WA -
testcase_08 AC 133 ms
41,328 KB
testcase_09 WA -
testcase_10 AC 130 ms
41,156 KB
testcase_11 AC 131 ms
41,212 KB
testcase_12 AC 133 ms
40,792 KB
testcase_13 AC 130 ms
41,312 KB
testcase_14 AC 131 ms
40,920 KB
testcase_15 AC 130 ms
41,156 KB
testcase_16 AC 118 ms
39,912 KB
testcase_17 AC 137 ms
41,324 KB
testcase_18 AC 128 ms
41,172 KB
testcase_19 AC 129 ms
40,916 KB
testcase_20 AC 132 ms
41,192 KB
testcase_21 AC 133 ms
41,168 KB
testcase_22 AC 133 ms
40,932 KB
testcase_23 AC 136 ms
41,136 KB
testcase_24 AC 120 ms
40,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int Y = scan.nextInt();
		int X = scan.nextInt();
		scan.close();
		int pX = X + 1;
		int pY = Y + 1;
		while(!isPrime(pX)) {
			pX ++;
		}
		while(!isPrime(pY)) {
			pY ++;
		}
		int k = pX - X + pY - Y - 2;
		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 <= (int)Math.sqrt(n); i += 2){
            if(n % i == 0) {
                return false;
            }
        }
        return true;
    }
}
0