結果

問題 No.531 エヌスクミ島の平和協定
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-06-24 00:03:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 77,988 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-10-05 12:05:19
合計ジャッジ時間 7,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,288 KB
testcase_01 AC 115 ms
53,916 KB
testcase_02 AC 115 ms
53,848 KB
testcase_03 AC 116 ms
53,800 KB
testcase_04 AC 103 ms
52,944 KB
testcase_05 AC 118 ms
53,956 KB
testcase_06 AC 98 ms
52,328 KB
testcase_07 AC 99 ms
52,736 KB
testcase_08 WA -
testcase_09 AC 105 ms
52,924 KB
testcase_10 AC 114 ms
53,704 KB
testcase_11 AC 115 ms
53,736 KB
testcase_12 AC 117 ms
53,820 KB
testcase_13 AC 99 ms
52,800 KB
testcase_14 AC 118 ms
53,696 KB
testcase_15 AC 116 ms
53,736 KB
testcase_16 AC 114 ms
53,548 KB
testcase_17 AC 111 ms
53,928 KB
testcase_18 AC 100 ms
52,552 KB
testcase_19 AC 101 ms
52,752 KB
testcase_20 AC 113 ms
53,420 KB
testcase_21 AC 101 ms
52,704 KB
testcase_22 AC 102 ms
52,660 KB
testcase_23 AC 110 ms
53,580 KB
testcase_24 AC 114 ms
53,752 KB
testcase_25 AC 110 ms
53,688 KB
testcase_26 AC 101 ms
52,748 KB
testcase_27 AC 103 ms
52,740 KB
testcase_28 AC 116 ms
53,964 KB
testcase_29 AC 100 ms
52,752 KB
testcase_30 AC 114 ms
53,884 KB
testcase_31 AC 101 ms
52,816 KB
testcase_32 AC 109 ms
53,492 KB
testcase_33 AC 117 ms
53,856 KB
testcase_34 AC 114 ms
53,836 KB
testcase_35 AC 98 ms
52,312 KB
testcase_36 AC 115 ms
53,888 KB
testcase_37 AC 111 ms
53,972 KB
testcase_38 AC 113 ms
53,820 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 if(N%M==0&&N/M==2){
            System.out.println(2);
        }else{
            System.out.println(-1);
        }
    }
}
0