結果

問題 No.485 方程式のお勉強
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 16:17:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 3,344 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-10-04 04:19:18
合計ジャッジ時間 6,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,412 KB
testcase_01 AC 130 ms
41,080 KB
testcase_02 AC 127 ms
41,368 KB
testcase_03 AC 113 ms
40,188 KB
testcase_04 AC 126 ms
41,404 KB
testcase_05 AC 129 ms
41,404 KB
testcase_06 AC 117 ms
40,436 KB
testcase_07 AC 113 ms
39,940 KB
testcase_08 AC 114 ms
40,136 KB
testcase_09 AC 123 ms
41,096 KB
testcase_10 AC 114 ms
40,008 KB
testcase_11 AC 126 ms
41,128 KB
testcase_12 AC 128 ms
41,188 KB
testcase_13 AC 129 ms
41,348 KB
testcase_14 AC 126 ms
40,904 KB
testcase_15 AC 128 ms
41,332 KB
testcase_16 AC 113 ms
40,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Houteishiki {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int a = s.nextInt();
		int b = s.nextInt();
		
		if(b % a == 0){
			System.out.println(b/a);
		}else{
			System.out.println("NO");
		}

	}

}
0