結果

問題 No.485 方程式のお勉強
ユーザー YOSHIYOSHI
提出日時 2021-03-16 22:54:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 3,271 ms
コンパイル使用メモリ 73,868 KB
実行使用メモリ 37,084 KB
最終ジャッジ日時 2024-11-08 18:41:23
合計ジャッジ時間 4,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,728 KB
testcase_01 AC 48 ms
36,844 KB
testcase_02 AC 47 ms
36,888 KB
testcase_03 AC 48 ms
36,904 KB
testcase_04 AC 49 ms
36,916 KB
testcase_05 AC 49 ms
37,084 KB
testcase_06 AC 48 ms
36,600 KB
testcase_07 AC 48 ms
36,672 KB
testcase_08 AC 49 ms
36,820 KB
testcase_09 AC 49 ms
36,892 KB
testcase_10 AC 49 ms
37,048 KB
testcase_11 AC 48 ms
36,704 KB
testcase_12 AC 50 ms
36,596 KB
testcase_13 AC 49 ms
36,876 KB
testcase_14 AC 48 ms
36,560 KB
testcase_15 AC 49 ms
37,000 KB
testcase_16 AC 48 ms
36,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000485_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String[] x = br.readLine().split(" ");
		int a = Integer.parseInt(x[0]);
		int b = Integer.parseInt(x[1]);
		System.out.println(b % a == 0 ? b / a : "NO");
	}
}
0