結果

問題 No.485 方程式のお勉強
ユーザー misk703misk703
提出日時 2018-04-27 13:01:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 3,427 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 55,828 KB
最終ジャッジ日時 2024-06-27 21:38:14
合計ジャッジ時間 6,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 126 ms
54,032 KB
testcase_04 AC 123 ms
54,016 KB
testcase_05 AC 124 ms
53,816 KB
testcase_06 AC 126 ms
53,924 KB
testcase_07 WA -
testcase_08 AC 127 ms
53,888 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 125 ms
54,024 KB
testcase_12 WA -
testcase_13 AC 127 ms
53,940 KB
testcase_14 WA -
testcase_15 AC 126 ms
53,752 KB
testcase_16 AC 127 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A{
    public static void main(String[] args){
        Scanner s = new Scanner(System.in);
        int a = Integer.parseInt(s.next());
        double b = Integer.parseInt(s.next());
        double ans;

        ans = (double)a / b;

        if(ans % 1 ==0){
           System.out.println((int)ans);
        } else{
            System.out.println("NO");
        }
    }
}
0