結果

問題 No.485 方程式のお勉強
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-03 01:42:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 4,853 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 36,956 KB
最終ジャッジ日時 2024-11-15 22:44:26
合計ジャッジ時間 5,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,412 KB
testcase_01 AC 53 ms
36,768 KB
testcase_02 AC 54 ms
36,776 KB
testcase_03 AC 54 ms
36,852 KB
testcase_04 AC 54 ms
36,868 KB
testcase_05 AC 53 ms
36,940 KB
testcase_06 AC 52 ms
36,716 KB
testcase_07 AC 54 ms
36,696 KB
testcase_08 AC 54 ms
36,508 KB
testcase_09 AC 55 ms
36,956 KB
testcase_10 AC 53 ms
36,936 KB
testcase_11 AC 56 ms
36,792 KB
testcase_12 AC 56 ms
36,652 KB
testcase_13 AC 56 ms
36,760 KB
testcase_14 AC 53 ms
36,776 KB
testcase_15 AC 53 ms
36,504 KB
testcase_16 AC 56 ms
36,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No485 {
	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			String[] str = br.readLine().split(" ");
			int A = Integer.parseInt(str[0]);
			int B = Integer.parseInt(str[1]);
			if(B%A ==0) System.out.println(B/A);
			else System.out.println("NO");
			
		}catch(IOException e){
			e.getStackTrace();
		}catch(NumberFormatException e){
		e.getStackTrace();
		}
	}
}
0