結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,024 KB
testcase_01 AC 119 ms
41,228 KB
testcase_02 AC 123 ms
41,340 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 99 ms
41,148 KB
testcase_08 WA -
testcase_09 AC 113 ms
40,992 KB
testcase_10 AC 118 ms
41,232 KB
testcase_11 AC 110 ms
41,332 KB
testcase_12 WA -
testcase_13 AC 110 ms
41,176 KB
testcase_14 AC 108 ms
41,264 KB
testcase_15 AC 110 ms
40,980 KB
testcase_16 WA -
testcase_17 AC 95 ms
41,184 KB
testcase_18 AC 108 ms
41,408 KB
testcase_19 AC 111 ms
41,104 KB
testcase_20 AC 110 ms
41,468 KB
testcase_21 AC 114 ms
41,100 KB
testcase_22 AC 119 ms
41,356 KB
testcase_23 AC 116 ms
41,444 KB
testcase_24 AC 116 ms
41,160 KB
testcase_25 AC 108 ms
41,168 KB
testcase_26 AC 117 ms
41,220 KB
testcase_27 AC 109 ms
41,160 KB
testcase_28 AC 120 ms
41,120 KB
testcase_29 AC 121 ms
40,936 KB
testcase_30 AC 121 ms
41,120 KB
testcase_31 AC 124 ms
40,864 KB
testcase_32 AC 118 ms
41,080 KB
testcase_33 AC 106 ms
41,200 KB
testcase_34 AC 118 ms
40,972 KB
testcase_35 AC 125 ms
41,108 KB
testcase_36 AC 117 ms
40,996 KB
testcase_37 AC 112 ms
40,988 KB
testcase_38 AC 105 ms
41,000 KB
権限があれば一括ダウンロードができます

ソースコード

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)System.out.print(m/n);
        else System.out.print("-1");
        
        System.out.println();
    }

}
0