結果

問題 No.531 エヌスクミ島の平和協定
ユーザー unirou2unirou2
提出日時 2017-06-23 22:41:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 73,736 KB
実行使用メモリ 56,204 KB
最終ジャッジ日時 2024-10-05 11:40:27
合計ジャッジ時間 8,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,288 KB
testcase_01 AC 126 ms
41,140 KB
testcase_02 AC 126 ms
41,424 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 128 ms
41,220 KB
testcase_08 WA -
testcase_09 AC 125 ms
41,240 KB
testcase_10 AC 126 ms
41,148 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 126 ms
41,308 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 123 ms
41,024 KB
testcase_18 AC 123 ms
41,268 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 126 ms
41,264 KB
testcase_22 WA -
testcase_23 AC 128 ms
41,256 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 127 ms
41,176 KB
testcase_31 WA -
testcase_32 AC 127 ms
41,596 KB
testcase_33 AC 127 ms
41,300 KB
testcase_34 WA -
testcase_35 AC 110 ms
40,316 KB
testcase_36 AC 124 ms
40,964 KB
testcase_37 AC 124 ms
40,828 KB
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
 
public class Main {
    public static void main(String[] args) {

        Scanner sc  = new Scanner(System.in);

        int n= Integer.parseInt(sc.next());
        int m = Integer.parseInt(sc.next());
        if((m+n)%2==0)System.out.print(m/n);
        else System.out.print("-1");
        
        System.out.println();
    }

}
0