結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 128 ms
54,144 KB
testcase_04 AC 127 ms
54,136 KB
testcase_05 AC 128 ms
54,020 KB
testcase_06 AC 132 ms
53,956 KB
testcase_07 WA -
testcase_08 AC 131 ms
54,340 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 129 ms
54,016 KB
testcase_12 WA -
testcase_13 AC 131 ms
54,108 KB
testcase_14 WA -
testcase_15 AC 131 ms
54,332 KB
testcase_16 AC 129 ms
54,004 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