結果

問題 No.531 エヌスクミ島の平和協定
ユーザー tsunabittsunabit
提出日時 2019-06-16 17:46:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 3,896 ms
コンパイル使用メモリ 79,004 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-11-24 09:37:54
合計ジャッジ時間 8,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,872 KB
testcase_01 AC 98 ms
53,104 KB
testcase_02 AC 99 ms
52,876 KB
testcase_03 AC 111 ms
53,828 KB
testcase_04 AC 102 ms
52,984 KB
testcase_05 AC 109 ms
54,100 KB
testcase_06 AC 114 ms
53,712 KB
testcase_07 AC 105 ms
52,984 KB
testcase_08 AC 102 ms
53,028 KB
testcase_09 AC 113 ms
53,988 KB
testcase_10 AC 110 ms
54,004 KB
testcase_11 AC 97 ms
52,756 KB
testcase_12 AC 118 ms
54,024 KB
testcase_13 AC 97 ms
52,452 KB
testcase_14 AC 111 ms
54,032 KB
testcase_15 AC 102 ms
52,988 KB
testcase_16 AC 113 ms
54,128 KB
testcase_17 AC 100 ms
52,968 KB
testcase_18 AC 109 ms
54,040 KB
testcase_19 AC 110 ms
53,924 KB
testcase_20 AC 116 ms
53,844 KB
testcase_21 AC 105 ms
52,792 KB
testcase_22 AC 112 ms
54,284 KB
testcase_23 AC 105 ms
53,500 KB
testcase_24 AC 111 ms
53,852 KB
testcase_25 AC 110 ms
54,240 KB
testcase_26 AC 110 ms
53,888 KB
testcase_27 AC 115 ms
54,104 KB
testcase_28 AC 119 ms
54,080 KB
testcase_29 AC 114 ms
54,072 KB
testcase_30 AC 119 ms
54,392 KB
testcase_31 AC 99 ms
52,964 KB
testcase_32 AC 107 ms
53,988 KB
testcase_33 AC 110 ms
54,016 KB
testcase_34 AC 111 ms
54,032 KB
testcase_35 AC 111 ms
53,716 KB
testcase_36 AC 108 ms
53,004 KB
testcase_37 AC 116 ms
53,916 KB
testcase_38 AC 107 ms
53,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No526 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt(), m = sc.nextInt();
    	
    	if(n <= m) {
    		System.out.println(1);
    	}else if(n % 2 == 0 && (n / 2) <= m) {
    		System.out.println(2);
    	}else {
    		System.out.println(-1);
    	}
    }
}
0