結果

問題 No.531 エヌスクミ島の平和協定
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 23:23:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 4,061 ms
コンパイル使用メモリ 73,480 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-06-02 06:45:37
合計ジャッジ時間 7,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,144 KB
testcase_01 AC 107 ms
41,388 KB
testcase_02 AC 99 ms
39,964 KB
testcase_03 AC 111 ms
41,260 KB
testcase_04 AC 109 ms
41,172 KB
testcase_05 AC 106 ms
40,996 KB
testcase_06 AC 108 ms
41,316 KB
testcase_07 WA -
testcase_08 AC 101 ms
40,248 KB
testcase_09 AC 110 ms
41,076 KB
testcase_10 AC 113 ms
41,172 KB
testcase_11 AC 119 ms
41,380 KB
testcase_12 AC 111 ms
41,380 KB
testcase_13 AC 113 ms
40,968 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 100 ms
40,160 KB
testcase_17 WA -
testcase_18 AC 108 ms
41,380 KB
testcase_19 WA -
testcase_20 AC 109 ms
41,012 KB
testcase_21 WA -
testcase_22 AC 100 ms
40,092 KB
testcase_23 WA -
testcase_24 AC 112 ms
41,152 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 111 ms
41,132 KB
testcase_28 WA -
testcase_29 AC 97 ms
39,832 KB
testcase_30 AC 116 ms
41,172 KB
testcase_31 AC 114 ms
41,256 KB
testcase_32 AC 103 ms
40,020 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 120 ms
41,332 KB
testcase_36 WA -
testcase_37 AC 101 ms
39,844 KB
testcase_38 AC 108 ms
40,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

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