結果

問題 No.531 エヌスクミ島の平和協定
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 20:10:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 3,341 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-09-19 18:35:53
合計ジャッジ時間 8,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,864 KB
testcase_01 AC 122 ms
54,088 KB
testcase_02 AC 108 ms
53,072 KB
testcase_03 AC 118 ms
54,016 KB
testcase_04 AC 105 ms
52,980 KB
testcase_05 AC 109 ms
52,700 KB
testcase_06 AC 119 ms
54,092 KB
testcase_07 AC 123 ms
54,232 KB
testcase_08 AC 122 ms
54,032 KB
testcase_09 AC 119 ms
54,200 KB
testcase_10 AC 123 ms
54,004 KB
testcase_11 AC 107 ms
52,992 KB
testcase_12 AC 119 ms
54,136 KB
testcase_13 AC 104 ms
52,700 KB
testcase_14 AC 122 ms
53,884 KB
testcase_15 AC 120 ms
53,904 KB
testcase_16 AC 128 ms
54,120 KB
testcase_17 AC 121 ms
54,132 KB
testcase_18 AC 117 ms
54,120 KB
testcase_19 AC 119 ms
54,296 KB
testcase_20 AC 121 ms
53,960 KB
testcase_21 AC 120 ms
53,940 KB
testcase_22 AC 106 ms
52,712 KB
testcase_23 AC 106 ms
52,692 KB
testcase_24 AC 110 ms
52,960 KB
testcase_25 AC 123 ms
54,128 KB
testcase_26 AC 122 ms
53,960 KB
testcase_27 AC 119 ms
54,120 KB
testcase_28 AC 120 ms
54,124 KB
testcase_29 AC 120 ms
54,508 KB
testcase_30 AC 117 ms
54,136 KB
testcase_31 AC 118 ms
54,024 KB
testcase_32 AC 121 ms
54,060 KB
testcase_33 AC 122 ms
54,028 KB
testcase_34 AC 117 ms
53,860 KB
testcase_35 AC 117 ms
54,192 KB
testcase_36 AC 110 ms
53,008 KB
testcase_37 AC 118 ms
53,932 KB
testcase_38 AC 121 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con531 {

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

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

}
0