結果

問題 No.531 エヌスクミ島の平和協定
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-09-07 21:23:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 3,186 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 50,228 KB
最終ジャッジ日時 2024-11-07 11:11:33
合計ジャッジ時間 6,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,020 KB
testcase_01 AC 53 ms
36,572 KB
testcase_02 AC 50 ms
37,296 KB
testcase_03 AC 51 ms
36,700 KB
testcase_04 WA -
testcase_05 AC 51 ms
37,176 KB
testcase_06 WA -
testcase_07 AC 50 ms
37,060 KB
testcase_08 WA -
testcase_09 AC 50 ms
37,144 KB
testcase_10 AC 52 ms
37,280 KB
testcase_11 AC 50 ms
37,004 KB
testcase_12 AC 51 ms
37,292 KB
testcase_13 AC 50 ms
37,204 KB
testcase_14 AC 51 ms
36,712 KB
testcase_15 AC 50 ms
36,988 KB
testcase_16 WA -
testcase_17 AC 51 ms
36,876 KB
testcase_18 AC 52 ms
36,848 KB
testcase_19 AC 51 ms
36,708 KB
testcase_20 AC 51 ms
37,220 KB
testcase_21 AC 52 ms
37,296 KB
testcase_22 AC 51 ms
36,884 KB
testcase_23 AC 51 ms
37,236 KB
testcase_24 AC 51 ms
36,852 KB
testcase_25 AC 52 ms
37,424 KB
testcase_26 AC 51 ms
37,116 KB
testcase_27 AC 52 ms
37,184 KB
testcase_28 AC 52 ms
37,212 KB
testcase_29 AC 52 ms
37,168 KB
testcase_30 AC 53 ms
37,144 KB
testcase_31 AC 52 ms
37,272 KB
testcase_32 AC 51 ms
36,916 KB
testcase_33 AC 51 ms
37,108 KB
testcase_34 AC 52 ms
36,704 KB
testcase_35 AC 51 ms
37,244 KB
testcase_36 AC 50 ms
37,204 KB
testcase_37 AC 50 ms
36,688 KB
testcase_38 AC 50 ms
36,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class No531 {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));

        String[] inputs = reader.readLine().split(" ");
        int n = Integer.parseInt(inputs[0]);
        int m = Integer.parseInt(inputs[1]);

        if (n <= m) {
            System.out.println(1);
        } else {
            System.out.println(-1);
        }
    }
}
0