結果

問題 No.531 エヌスクミ島の平和協定
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-06-23 22:55:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-10-05 11:51:30
合計ジャッジ時間 7,342 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,848 KB
testcase_01 AC 106 ms
41,208 KB
testcase_02 AC 97 ms
39,860 KB
testcase_03 AC 106 ms
41,640 KB
testcase_04 WA -
testcase_05 AC 106 ms
41,044 KB
testcase_06 WA -
testcase_07 AC 106 ms
40,948 KB
testcase_08 WA -
testcase_09 AC 101 ms
40,152 KB
testcase_10 AC 104 ms
40,340 KB
testcase_11 AC 110 ms
41,368 KB
testcase_12 AC 108 ms
40,780 KB
testcase_13 AC 111 ms
41,220 KB
testcase_14 AC 99 ms
39,880 KB
testcase_15 AC 99 ms
40,092 KB
testcase_16 WA -
testcase_17 AC 111 ms
41,044 KB
testcase_18 AC 98 ms
39,928 KB
testcase_19 AC 112 ms
41,296 KB
testcase_20 AC 99 ms
40,020 KB
testcase_21 AC 98 ms
39,872 KB
testcase_22 AC 117 ms
41,516 KB
testcase_23 AC 114 ms
41,052 KB
testcase_24 AC 100 ms
39,912 KB
testcase_25 AC 100 ms
40,120 KB
testcase_26 AC 109 ms
40,972 KB
testcase_27 AC 98 ms
40,240 KB
testcase_28 AC 110 ms
41,248 KB
testcase_29 AC 98 ms
40,084 KB
testcase_30 AC 109 ms
41,000 KB
testcase_31 AC 117 ms
40,736 KB
testcase_32 AC 109 ms
41,184 KB
testcase_33 AC 107 ms
40,884 KB
testcase_34 AC 100 ms
39,760 KB
testcase_35 AC 97 ms
39,768 KB
testcase_36 AC 99 ms
40,088 KB
testcase_37 AC 110 ms
41,176 KB
testcase_38 AC 109 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int M= sc.nextInt();
        if(N>M){
            System.out.println(-1);
        }else{
            System.out.println(1);
        }
    }
}
0