結果

問題 No.485 方程式のお勉強
ユーザー akko_yukkyakko_yukky
提出日時 2017-03-08 17:16:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 4,365 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-10-04 04:12:09
合計ジャッジ時間 7,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,964 KB
testcase_01 AC 136 ms
54,052 KB
testcase_02 AC 136 ms
53,464 KB
testcase_03 AC 135 ms
53,524 KB
testcase_04 AC 135 ms
54,080 KB
testcase_05 AC 136 ms
53,956 KB
testcase_06 AC 137 ms
53,756 KB
testcase_07 AC 137 ms
53,956 KB
testcase_08 AC 136 ms
53,704 KB
testcase_09 AC 137 ms
53,500 KB
testcase_10 AC 137 ms
53,908 KB
testcase_11 AC 136 ms
53,364 KB
testcase_12 AC 137 ms
53,652 KB
testcase_13 AC 138 ms
53,956 KB
testcase_14 AC 137 ms
54,016 KB
testcase_15 AC 137 ms
53,876 KB
testcase_16 AC 136 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class class_name {
    public static void main(String[] args){
        //System.out.println("Hello World!");
        
        int a;
        int b;
        
        Scanner sc = new Scanner(System.in);
        a = sc.nextInt();
        b = sc.nextInt();
            
        if (Math.abs(a)<=Math.abs(b) && b%a==0){
            System.out.println(b/a);
        }else{
            System.out.println("NO");
        }
    }
}
0