結果

問題 No.485 方程式のお勉強
ユーザー jimanojimano
提出日時 2018-01-14 14:56:26
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 2,979 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-12-24 02:45:41
合計ジャッジ時間 5,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,852 KB
testcase_01 AC 119 ms
54,084 KB
testcase_02 AC 122 ms
54,072 KB
testcase_03 AC 121 ms
54,092 KB
testcase_04 AC 120 ms
53,960 KB
testcase_05 AC 120 ms
53,556 KB
testcase_06 AC 125 ms
54,116 KB
testcase_07 AC 123 ms
54,056 KB
testcase_08 AC 111 ms
53,600 KB
testcase_09 AC 121 ms
53,800 KB
testcase_10 AC 121 ms
53,828 KB
testcase_11 AC 108 ms
53,068 KB
testcase_12 AC 115 ms
53,948 KB
testcase_13 AC 114 ms
53,536 KB
testcase_14 AC 118 ms
53,852 KB
testcase_15 AC 117 ms
53,736 KB
testcase_16 AC 121 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.util.Scanner;

public class No0485 {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int A = sc.nextInt();
			int B = sc.nextInt();

			if (B % A == 0) {
				System.out.println(B / A);
			} else {
				System.out.println("NO");
			}
		}
	}
}
0