結果

問題 No.531 エヌスクミ島の平和協定
ユーザー GrenacheGrenache
提出日時 2017-07-15 11:37:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 3,437 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-09-19 16:29:26
合計ジャッジ時間 8,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,068 KB
testcase_01 AC 116 ms
54,180 KB
testcase_02 AC 114 ms
54,196 KB
testcase_03 AC 113 ms
54,196 KB
testcase_04 AC 117 ms
54,184 KB
testcase_05 AC 125 ms
53,816 KB
testcase_06 AC 112 ms
53,720 KB
testcase_07 AC 115 ms
53,880 KB
testcase_08 AC 100 ms
52,836 KB
testcase_09 AC 104 ms
53,004 KB
testcase_10 AC 109 ms
53,372 KB
testcase_11 AC 117 ms
54,200 KB
testcase_12 AC 116 ms
54,180 KB
testcase_13 AC 114 ms
53,836 KB
testcase_14 AC 120 ms
54,460 KB
testcase_15 AC 114 ms
53,720 KB
testcase_16 AC 104 ms
53,128 KB
testcase_17 AC 116 ms
54,128 KB
testcase_18 AC 120 ms
53,832 KB
testcase_19 AC 112 ms
53,980 KB
testcase_20 AC 118 ms
54,120 KB
testcase_21 AC 98 ms
52,644 KB
testcase_22 AC 116 ms
54,212 KB
testcase_23 AC 113 ms
53,912 KB
testcase_24 AC 113 ms
54,448 KB
testcase_25 AC 102 ms
53,156 KB
testcase_26 AC 112 ms
54,148 KB
testcase_27 AC 114 ms
53,888 KB
testcase_28 AC 116 ms
54,100 KB
testcase_29 AC 118 ms
53,932 KB
testcase_30 AC 119 ms
54,088 KB
testcase_31 AC 116 ms
54,084 KB
testcase_32 AC 118 ms
54,260 KB
testcase_33 AC 112 ms
54,188 KB
testcase_34 AC 116 ms
53,984 KB
testcase_35 AC 104 ms
52,680 KB
testcase_36 AC 115 ms
53,900 KB
testcase_37 AC 115 ms
53,968 KB
testcase_38 AC 115 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder531 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		int m = sc.nextInt();

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

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0