結果

問題 No.485 方程式のお勉強
ユーザー fal_rndfal_rnd
提出日時 2017-02-28 23:25:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 3,397 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-10-04 04:04:11
合計ジャッジ時間 6,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
39,936 KB
testcase_01 AC 129 ms
41,368 KB
testcase_02 AC 129 ms
41,164 KB
testcase_03 AC 128 ms
40,880 KB
testcase_04 AC 127 ms
41,244 KB
testcase_05 AC 128 ms
41,280 KB
testcase_06 AC 129 ms
41,140 KB
testcase_07 AC 132 ms
41,364 KB
testcase_08 AC 115 ms
40,012 KB
testcase_09 AC 129 ms
41,060 KB
testcase_10 AC 130 ms
41,292 KB
testcase_11 AC 115 ms
40,112 KB
testcase_12 AC 129 ms
41,664 KB
testcase_13 AC 129 ms
41,300 KB
testcase_14 AC 130 ms
41,352 KB
testcase_15 AC 127 ms
41,392 KB
testcase_16 AC 128 ms
41,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int a=s.nextInt(),b=s.nextInt();
		System.out.println(b%a==0?b/a:"NO");
	}
}
0