結果

問題 No.485 方程式のお勉強
ユーザー losiz17losiz17
提出日時 2017-04-21 16:42:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 3,504 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,224 KB
最終ジャッジ日時 2024-10-04 04:30:58
合計ジャッジ時間 6,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,164 KB
testcase_01 AC 128 ms
41,032 KB
testcase_02 AC 121 ms
41,140 KB
testcase_03 AC 124 ms
41,132 KB
testcase_04 AC 126 ms
41,028 KB
testcase_05 AC 123 ms
41,088 KB
testcase_06 AC 108 ms
39,928 KB
testcase_07 AC 122 ms
41,108 KB
testcase_08 AC 110 ms
39,936 KB
testcase_09 AC 121 ms
41,152 KB
testcase_10 AC 123 ms
41,036 KB
testcase_11 AC 122 ms
40,760 KB
testcase_12 AC 121 ms
41,024 KB
testcase_13 AC 107 ms
39,872 KB
testcase_14 AC 121 ms
41,124 KB
testcase_15 AC 124 ms
41,224 KB
testcase_16 AC 123 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Houteisiki {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		Scanner sc = new Scanner(System.in);
		
		int a = Integer.parseInt(sc.next());
		int b = Integer.parseInt(sc.next());
		
		if(b/a -(double)b/(double)a == 0){
			System.out.println(b/a);
		}else{
			System.out.println("NO");
		}

	}

}
0