結果

問題 No.531 エヌスクミ島の平和協定
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-30 18:51:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 3,560 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-05-02 01:28:04
合計ジャッジ時間 10,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,204 KB
testcase_01 AC 137 ms
41,196 KB
testcase_02 AC 134 ms
41,332 KB
testcase_03 AC 139 ms
41,096 KB
testcase_04 AC 136 ms
41,244 KB
testcase_05 AC 136 ms
41,420 KB
testcase_06 AC 136 ms
41,112 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 135 ms
41,328 KB
testcase_10 AC 133 ms
41,264 KB
testcase_11 AC 130 ms
40,944 KB
testcase_12 AC 137 ms
41,008 KB
testcase_13 AC 134 ms
40,976 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 119 ms
40,144 KB
testcase_17 WA -
testcase_18 AC 139 ms
41,040 KB
testcase_19 WA -
testcase_20 AC 136 ms
41,188 KB
testcase_21 WA -
testcase_22 AC 138 ms
41,204 KB
testcase_23 WA -
testcase_24 AC 136 ms
41,180 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 139 ms
41,200 KB
testcase_28 WA -
testcase_29 AC 136 ms
41,068 KB
testcase_30 AC 134 ms
41,252 KB
testcase_31 AC 137 ms
41,460 KB
testcase_32 AC 133 ms
41,280 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 135 ms
41,200 KB
testcase_36 WA -
testcase_37 AC 135 ms
41,148 KB
testcase_38 AC 134 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No531 {
    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 && n % 2 == 0) {
            System.out.println(n / m);
        } else {
            System.out.println(-1);
        }
    }
}
0