結果

問題 No.485 方程式のお勉強
ユーザー akko_yukkyakko_yukky
提出日時 2017-03-08 17:12:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 457 bytes
コンパイル時間 3,208 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 56,496 KB
最終ジャッジ日時 2024-06-23 19:12:04
合計ジャッジ時間 6,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,932 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 129 ms
54,336 KB
testcase_04 AC 131 ms
54,508 KB
testcase_05 AC 128 ms
54,172 KB
testcase_06 AC 129 ms
54,228 KB
testcase_07 WA -
testcase_08 AC 129 ms
54,152 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 132 ms
54,272 KB
testcase_12 AC 127 ms
54,008 KB
testcase_13 AC 115 ms
52,852 KB
testcase_14 WA -
testcase_15 AC 128 ms
54,256 KB
testcase_16 AC 130 ms
54,092 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) && a%b==0){
            System.out.println(b/a);
        }else{
            System.out.println("NO");
        }
    }
}
0