結果

問題 No.485 方程式のお勉強
ユーザー Vir_MeL0Vir_MeL0
提出日時 2017-03-22 01:31:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 74,016 KB
実行使用メモリ 50,336 KB
最終ジャッジ日時 2024-10-04 04:20:57
合計ジャッジ時間 3,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,492 KB
testcase_01 AC 55 ms
49,500 KB
testcase_02 AC 55 ms
50,252 KB
testcase_03 AC 54 ms
49,992 KB
testcase_04 AC 54 ms
49,676 KB
testcase_05 AC 55 ms
50,220 KB
testcase_06 AC 54 ms
49,912 KB
testcase_07 AC 54 ms
49,992 KB
testcase_08 AC 54 ms
49,728 KB
testcase_09 AC 55 ms
50,308 KB
testcase_10 AC 54 ms
49,996 KB
testcase_11 AC 55 ms
50,276 KB
testcase_12 AC 54 ms
50,012 KB
testcase_13 AC 55 ms
50,336 KB
testcase_14 AC 55 ms
49,864 KB
testcase_15 AC 55 ms
49,884 KB
testcase_16 AC 56 ms
50,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
public class Main{
public static void main(String[] args)throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String str=br.readLine();
String[] num=str.split(" ");
int a=Integer.parseInt(num[0]);
int b=Integer.parseInt(num[1]);
if(b%a!=0)
System.out.println("NO");
else
System.out.println(b/a);
}
}
0