結果

問題 No.485 方程式のお勉強
ユーザー neko_the_shadowneko_the_shadow
提出日時 2017-03-20 22:55:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 75,336 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-10-04 04:20:48
合計ジャッジ時間 5,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,096 KB
testcase_01 AC 124 ms
41,128 KB
testcase_02 AC 110 ms
40,144 KB
testcase_03 AC 126 ms
40,764 KB
testcase_04 AC 127 ms
41,112 KB
testcase_05 AC 124 ms
41,140 KB
testcase_06 AC 120 ms
41,292 KB
testcase_07 AC 127 ms
40,756 KB
testcase_08 AC 127 ms
41,164 KB
testcase_09 AC 112 ms
40,140 KB
testcase_10 AC 125 ms
41,344 KB
testcase_11 AC 126 ms
41,212 KB
testcase_12 AC 123 ms
41,152 KB
testcase_13 AC 121 ms
41,244 KB
testcase_14 AC 125 ms
41,536 KB
testcase_15 AC 125 ms
41,164 KB
testcase_16 AC 124 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        String[] tokens = stdin.nextLine().split(" ");
        int a = Integer.parseInt(tokens[0]), b = Integer.parseInt(tokens[1]);
        
        if (Math.abs(b) % Math.abs(a) == 0) {
            System.out.println(b / a);
        } else {
            System.out.println("NO");
        }
    }
}
0