結果

問題 No.485 方程式のお勉強
ユーザー KibidanKibidan
提出日時 2017-02-24 22:24:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-10-04 03:25:05
合計ジャッジ時間 5,118 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,724 KB
testcase_01 AC 111 ms
54,056 KB
testcase_02 AC 97 ms
52,972 KB
testcase_03 AC 101 ms
52,544 KB
testcase_04 AC 110 ms
53,584 KB
testcase_05 AC 113 ms
53,984 KB
testcase_06 AC 113 ms
53,992 KB
testcase_07 AC 114 ms
53,776 KB
testcase_08 AC 110 ms
53,628 KB
testcase_09 AC 99 ms
52,536 KB
testcase_10 AC 110 ms
54,180 KB
testcase_11 AC 98 ms
53,060 KB
testcase_12 AC 111 ms
53,972 KB
testcase_13 AC 116 ms
53,836 KB
testcase_14 AC 118 ms
54,128 KB
testcase_15 AC 122 ms
53,680 KB
testcase_16 AC 116 ms
53,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = Integer.parseInt(sc.next());
        int b = Integer.parseInt(sc.next());

        if((double)b/(double)a-b/a==0){
            System.out.println(b/a);
        }else{
            System.out.println("NO");
        }
    }
}
0