結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 117 ms
41,184 KB
testcase_04 AC 122 ms
41,240 KB
testcase_05 AC 121 ms
41,044 KB
testcase_06 AC 120 ms
40,892 KB
testcase_07 WA -
testcase_08 AC 125 ms
41,204 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 124 ms
41,044 KB
testcase_12 WA -
testcase_13 AC 110 ms
40,384 KB
testcase_14 WA -
testcase_15 AC 121 ms
41,276 KB
testcase_16 AC 116 ms
41,188 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());
        int 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