結果

問題 No.485 方程式のお勉強
ユーザー samplelpmassamplelpmas
提出日時 2017-04-08 09:13:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 78,364 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-10-04 04:27:51
合計ジャッジ時間 5,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,456 KB
testcase_01 AC 130 ms
41,120 KB
testcase_02 AC 127 ms
41,344 KB
testcase_03 AC 129 ms
41,140 KB
testcase_04 AC 131 ms
41,172 KB
testcase_05 AC 130 ms
40,856 KB
testcase_06 AC 127 ms
40,972 KB
testcase_07 AC 128 ms
41,032 KB
testcase_08 AC 126 ms
41,012 KB
testcase_09 AC 129 ms
41,004 KB
testcase_10 AC 128 ms
41,472 KB
testcase_11 AC 128 ms
41,384 KB
testcase_12 AC 127 ms
40,888 KB
testcase_13 AC 125 ms
41,028 KB
testcase_14 AC 129 ms
40,856 KB
testcase_15 AC 128 ms
41,344 KB
testcase_16 AC 129 ms
41,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int A = sc.nextInt();
        int B = sc.nextInt();

        if (B % A == 0) {
            System.out.println(B / A);
        } else {
            System.out.println("NO");
        }

    }

}
0