結果

問題 No.531 エヌスクミ島の平和協定
ユーザー 37zigen37zigen
提出日時 2017-06-24 05:09:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 75,820 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-09-19 16:24:08
合計ジャッジ時間 8,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,372 KB
testcase_01 AC 136 ms
41,136 KB
testcase_02 AC 130 ms
41,124 KB
testcase_03 AC 129 ms
41,212 KB
testcase_04 AC 134 ms
41,144 KB
testcase_05 AC 131 ms
41,408 KB
testcase_06 AC 117 ms
41,148 KB
testcase_07 AC 134 ms
41,260 KB
testcase_08 AC 131 ms
41,008 KB
testcase_09 AC 132 ms
41,240 KB
testcase_10 AC 131 ms
41,480 KB
testcase_11 AC 132 ms
41,112 KB
testcase_12 AC 132 ms
41,372 KB
testcase_13 AC 134 ms
41,896 KB
testcase_14 AC 133 ms
41,036 KB
testcase_15 AC 131 ms
41,100 KB
testcase_16 AC 134 ms
41,228 KB
testcase_17 AC 135 ms
41,368 KB
testcase_18 AC 132 ms
41,300 KB
testcase_19 AC 137 ms
41,248 KB
testcase_20 AC 131 ms
41,020 KB
testcase_21 AC 134 ms
41,008 KB
testcase_22 AC 131 ms
40,860 KB
testcase_23 AC 130 ms
41,256 KB
testcase_24 AC 132 ms
41,256 KB
testcase_25 AC 132 ms
41,072 KB
testcase_26 AC 134 ms
41,296 KB
testcase_27 AC 119 ms
39,836 KB
testcase_28 AC 134 ms
41,104 KB
testcase_29 AC 132 ms
41,320 KB
testcase_30 AC 133 ms
41,516 KB
testcase_31 AC 134 ms
41,524 KB
testcase_32 AC 122 ms
39,948 KB
testcase_33 AC 134 ms
41,428 KB
testcase_34 AC 135 ms
41,128 KB
testcase_35 AC 134 ms
41,224 KB
testcase_36 AC 135 ms
41,112 KB
testcase_37 AC 134 ms
41,256 KB
testcase_38 AC 131 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		long t = System.currentTimeMillis();
		new Main().run();
		// new Thread(null, new Main(), "",
		// Runtime.getRuntime().maxMemory()).start();
		System.err.println(System.currentTimeMillis() - t);
	}

	@SuppressWarnings("unchecked")
	public void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int 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);
		}
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0