結果

問題 No.485 方程式のお勉強
ユーザー jimanojimano
提出日時 2018-01-14 14:56:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 2,694 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-06-06 11:34:54
合計ジャッジ時間 5,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,856 KB
testcase_01 AC 107 ms
53,768 KB
testcase_02 AC 109 ms
54,108 KB
testcase_03 AC 104 ms
52,860 KB
testcase_04 AC 103 ms
54,104 KB
testcase_05 AC 109 ms
53,704 KB
testcase_06 AC 112 ms
54,204 KB
testcase_07 AC 113 ms
54,188 KB
testcase_08 AC 113 ms
54,100 KB
testcase_09 AC 115 ms
53,812 KB
testcase_10 AC 111 ms
53,536 KB
testcase_11 AC 96 ms
52,492 KB
testcase_12 AC 100 ms
52,592 KB
testcase_13 AC 100 ms
52,724 KB
testcase_14 AC 112 ms
53,900 KB
testcase_15 AC 114 ms
53,800 KB
testcase_16 AC 96 ms
52,596 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