結果

問題 No.531 エヌスクミ島の平和協定
ユーザー sakuraigakusakuraigaku
提出日時 2018-10-30 16:28:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 3,418 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-11-19 10:40:43
合計ジャッジ時間 9,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,044 KB
testcase_01 AC 130 ms
54,072 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 134 ms
54,184 KB
testcase_05 WA -
testcase_06 AC 133 ms
53,848 KB
testcase_07 AC 132 ms
53,832 KB
testcase_08 AC 131 ms
53,968 KB
testcase_09 AC 130 ms
54,268 KB
testcase_10 AC 133 ms
53,988 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 131 ms
53,984 KB
testcase_14 AC 133 ms
53,908 KB
testcase_15 AC 130 ms
54,152 KB
testcase_16 AC 133 ms
53,828 KB
testcase_17 AC 134 ms
53,760 KB
testcase_18 AC 132 ms
53,780 KB
testcase_19 AC 133 ms
53,808 KB
testcase_20 AC 133 ms
54,120 KB
testcase_21 AC 132 ms
53,964 KB
testcase_22 AC 134 ms
53,936 KB
testcase_23 AC 132 ms
54,060 KB
testcase_24 AC 132 ms
53,764 KB
testcase_25 AC 133 ms
53,952 KB
testcase_26 AC 134 ms
54,044 KB
testcase_27 AC 132 ms
53,748 KB
testcase_28 AC 133 ms
53,908 KB
testcase_29 AC 131 ms
54,108 KB
testcase_30 AC 132 ms
54,088 KB
testcase_31 AC 131 ms
54,136 KB
testcase_32 AC 130 ms
54,092 KB
testcase_33 AC 131 ms
53,792 KB
testcase_34 AC 133 ms
54,092 KB
testcase_35 AC 131 ms
53,976 KB
testcase_36 AC 131 ms
53,952 KB
testcase_37 AC 132 ms
53,924 KB
testcase_38 AC 132 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

    import java.util.Scanner;

public class No531 {

	public static void main(String[] args) {
		No531 no531 = new No531();
		no531.mainStart();
	}

	public void mainStart() {
		Scanner sc = new Scanner(System.in);
		String[] nextLines = sc.nextLine().split(" ");
		int animalNumber = Integer.parseInt(nextLines[0]);
		int bootRideNumber = Integer.parseInt(nextLines[1]);
		int ans = logic(animalNumber, bootRideNumber);
		System.out.println(ans);
	}

	public int logic(int animalNumber, int bootRideNumber) {
		if (animalNumber==bootRideNumber) {
			return 1;
		}else if (animalNumber%2==0) {
			if (animalNumber <= bootRideNumber * 2) {
				return 2;
			}
		}else {
			return -1;
		}
		return -1;
	}

}
0