結果

問題 No.485 方程式のお勉強
ユーザー 101000010101000010
提出日時 2017-05-17 02:01:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 4,503 ms
コンパイル使用メモリ 75,144 KB
実行使用メモリ 54,160 KB
最終ジャッジ日時 2024-10-04 04:34:09
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,936 KB
testcase_01 AC 131 ms
53,648 KB
testcase_02 AC 134 ms
53,924 KB
testcase_03 AC 130 ms
54,160 KB
testcase_04 AC 132 ms
53,760 KB
testcase_05 AC 131 ms
53,864 KB
testcase_06 AC 133 ms
53,604 KB
testcase_07 AC 133 ms
53,572 KB
testcase_08 AC 134 ms
53,776 KB
testcase_09 AC 135 ms
54,116 KB
testcase_10 AC 131 ms
53,908 KB
testcase_11 AC 130 ms
53,596 KB
testcase_12 AC 135 ms
53,488 KB
testcase_13 AC 137 ms
53,796 KB
testcase_14 AC 137 ms
53,780 KB
testcase_15 AC 134 ms
53,992 KB
testcase_16 AC 133 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No485 {
    public static void main(String[] args){
        int A,B;
        Scanner sc = new Scanner(System.in);
        String str = sc.nextLine();
        String[] inputs = str.split(" ");
        A = Integer.parseInt(inputs[0]);
        B = Integer.parseInt(inputs[1]);
        
        if(B % A == 0){
            System.out.println(B/A);
        }else{
            System.out.println("NO");
        }
    }
}
0