結果

問題 No.531 エヌスクミ島の平和協定
ユーザー YamaKasaYamaKasa
提出日時 2018-06-02 21:22:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-06-30 09:09:15
合計ジャッジ時間 8,816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,804 KB
testcase_01 AC 132 ms
54,092 KB
testcase_02 AC 132 ms
54,024 KB
testcase_03 AC 135 ms
54,392 KB
testcase_04 WA -
testcase_05 AC 134 ms
54,016 KB
testcase_06 WA -
testcase_07 AC 133 ms
54,208 KB
testcase_08 WA -
testcase_09 AC 136 ms
53,712 KB
testcase_10 WA -
testcase_11 AC 138 ms
53,932 KB
testcase_12 AC 135 ms
53,912 KB
testcase_13 AC 141 ms
53,796 KB
testcase_14 AC 134 ms
53,808 KB
testcase_15 AC 134 ms
53,880 KB
testcase_16 WA -
testcase_17 AC 134 ms
53,840 KB
testcase_18 AC 133 ms
54,060 KB
testcase_19 AC 135 ms
53,884 KB
testcase_20 AC 136 ms
54,080 KB
testcase_21 AC 132 ms
53,856 KB
testcase_22 AC 136 ms
54,148 KB
testcase_23 AC 132 ms
54,288 KB
testcase_24 AC 133 ms
54,128 KB
testcase_25 AC 134 ms
53,832 KB
testcase_26 AC 134 ms
54,004 KB
testcase_27 AC 131 ms
53,916 KB
testcase_28 AC 133 ms
54,084 KB
testcase_29 AC 136 ms
54,084 KB
testcase_30 AC 133 ms
53,960 KB
testcase_31 AC 134 ms
54,100 KB
testcase_32 AC 137 ms
53,972 KB
testcase_33 AC 133 ms
53,960 KB
testcase_34 AC 135 ms
53,988 KB
testcase_35 AC 135 ms
53,916 KB
testcase_36 AC 134 ms
53,960 KB
testcase_37 AC 131 ms
53,964 KB
testcase_38 AC 133 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int m = scan.nextInt();
		scan.close();

		if(m >= n) {
			System.out.println(1);
		}else {
			if(n == 4 && m == 3) {
				System.out.println(3);
			}else if(n == 5 && (m == 3 || m == 4)) {
				System.out.println(3);
			}
			System.out.println(-1);
		}


	}
}
0