結果

問題 No.531 エヌスクミ島の平和協定
ユーザー YamaKasaYamaKasa
提出日時 2018-06-02 21:26:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 54,640 KB
最終ジャッジ日時 2024-09-19 18:37:56
合計ジャッジ時間 7,564 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,640 KB
testcase_01 AC 106 ms
52,972 KB
testcase_02 AC 117 ms
54,228 KB
testcase_03 AC 120 ms
54,056 KB
testcase_04 AC 120 ms
54,284 KB
testcase_05 AC 118 ms
54,252 KB
testcase_06 AC 119 ms
54,232 KB
testcase_07 AC 115 ms
54,272 KB
testcase_08 AC 120 ms
54,096 KB
testcase_09 AC 119 ms
54,052 KB
testcase_10 AC 108 ms
52,992 KB
testcase_11 AC 118 ms
54,092 KB
testcase_12 AC 121 ms
53,896 KB
testcase_13 AC 119 ms
54,028 KB
testcase_14 AC 117 ms
53,024 KB
testcase_15 AC 118 ms
54,016 KB
testcase_16 AC 118 ms
54,076 KB
testcase_17 AC 117 ms
54,288 KB
testcase_18 AC 120 ms
54,144 KB
testcase_19 AC 112 ms
53,228 KB
testcase_20 AC 119 ms
53,880 KB
testcase_21 AC 107 ms
52,836 KB
testcase_22 AC 124 ms
54,088 KB
testcase_23 AC 119 ms
54,308 KB
testcase_24 AC 127 ms
54,208 KB
testcase_25 AC 121 ms
54,140 KB
testcase_26 AC 106 ms
52,976 KB
testcase_27 AC 123 ms
54,172 KB
testcase_28 AC 117 ms
54,140 KB
testcase_29 AC 118 ms
54,040 KB
testcase_30 AC 120 ms
54,108 KB
testcase_31 AC 110 ms
52,816 KB
testcase_32 AC 118 ms
54,216 KB
testcase_33 AC 118 ms
54,140 KB
testcase_34 AC 123 ms
54,268 KB
testcase_35 AC 123 ms
54,128 KB
testcase_36 AC 119 ms
54,316 KB
testcase_37 AC 122 ms
54,184 KB
testcase_38 AC 120 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int m = scan.nextInt();
		scan.close();

		if(m >= n) {
			System.out.println(1);
		}else {
			if(n % 2 == 0 && 2 * m >= n) {
				System.out.println(2);
			}else {
				System.out.println(-1);
			}
		}


	}
}
0