結果

問題 No.531 エヌスクミ島の平和協定
ユーザー 37zigen37zigen
提出日時 2017-06-24 05:07:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 757 bytes
コンパイル時間 2,610 ms
コンパイル使用メモリ 75,676 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-10-05 12:07:59
合計ジャッジ時間 8,070 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,944 KB
testcase_01 AC 120 ms
53,952 KB
testcase_02 AC 123 ms
53,268 KB
testcase_03 AC 122 ms
53,812 KB
testcase_04 AC 118 ms
53,928 KB
testcase_05 AC 119 ms
53,412 KB
testcase_06 AC 105 ms
52,868 KB
testcase_07 WA -
testcase_08 AC 107 ms
52,896 KB
testcase_09 AC 116 ms
53,740 KB
testcase_10 AC 117 ms
52,544 KB
testcase_11 AC 120 ms
54,032 KB
testcase_12 AC 117 ms
53,580 KB
testcase_13 AC 129 ms
53,776 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 118 ms
53,992 KB
testcase_17 WA -
testcase_18 AC 117 ms
54,012 KB
testcase_19 WA -
testcase_20 AC 129 ms
53,644 KB
testcase_21 WA -
testcase_22 AC 120 ms
54,240 KB
testcase_23 WA -
testcase_24 AC 103 ms
52,808 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 125 ms
53,644 KB
testcase_28 WA -
testcase_29 AC 121 ms
53,496 KB
testcase_30 AC 119 ms
53,992 KB
testcase_31 AC 122 ms
53,384 KB
testcase_32 AC 108 ms
52,680 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 119 ms
53,952 KB
testcase_36 WA -
testcase_37 AC 116 ms
53,796 KB
testcase_38 AC 124 ms
53,656 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 - 1) / m == 1) {
			System.out.println(2);
		} else if (n % 2 == 1) {
			System.out.println(-1);
		}
	}

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