結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 125 ms
40,996 KB
testcase_04 AC 120 ms
41,572 KB
testcase_05 AC 123 ms
41,068 KB
testcase_06 AC 119 ms
40,856 KB
testcase_07 WA -
testcase_08 AC 124 ms
40,984 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 120 ms
41,328 KB
testcase_12 WA -
testcase_13 AC 122 ms
40,812 KB
testcase_14 WA -
testcase_15 AC 119 ms
41,340 KB
testcase_16 AC 122 ms
41,148 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