結果

問題 No.485 方程式のお勉強
ユーザー FVRChanFVRChan
提出日時 2017-09-29 12:31:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 55,700 KB
最終ジャッジ日時 2024-11-15 19:52:19
合計ジャッジ時間 5,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,936 KB
testcase_01 AC 127 ms
53,860 KB
testcase_02 AC 126 ms
53,768 KB
testcase_03 AC 110 ms
52,880 KB
testcase_04 AC 127 ms
55,700 KB
testcase_05 AC 128 ms
53,756 KB
testcase_06 AC 129 ms
53,580 KB
testcase_07 AC 129 ms
53,956 KB
testcase_08 AC 127 ms
53,972 KB
testcase_09 AC 126 ms
54,024 KB
testcase_10 AC 125 ms
54,044 KB
testcase_11 AC 127 ms
53,912 KB
testcase_12 AC 129 ms
53,912 KB
testcase_13 AC 126 ms
54,068 KB
testcase_14 AC 128 ms
53,968 KB
testcase_15 AC 124 ms
53,724 KB
testcase_16 AC 127 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int a=sc.nextInt(),b=sc.nextInt();
		if(b%a==0)System.out.println(b/a);
		else System.out.println("NO");
	}
}
0