結果

問題 No.531 エヌスクミ島の平和協定
ユーザー 37zigen
提出日時 2017-06-24 05:09:56
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

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