結果

問題 No.485 方程式のお勉強
ユーザー 水野嶺水野嶺
提出日時 2020-05-28 16:35:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-10-13 04:15:22
合計ジャッジ時間 5,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,124 KB
testcase_01 AC 113 ms
39,864 KB
testcase_02 AC 117 ms
40,876 KB
testcase_03 AC 109 ms
39,880 KB
testcase_04 AC 116 ms
40,632 KB
testcase_05 AC 126 ms
41,552 KB
testcase_06 AC 126 ms
41,428 KB
testcase_07 AC 112 ms
39,884 KB
testcase_08 AC 126 ms
41,204 KB
testcase_09 AC 127 ms
41,820 KB
testcase_10 AC 120 ms
41,248 KB
testcase_11 AC 122 ms
41,232 KB
testcase_12 AC 123 ms
41,164 KB
testcase_13 AC 123 ms
41,312 KB
testcase_14 AC 122 ms
41,356 KB
testcase_15 AC 123 ms
41,308 KB
testcase_16 AC 128 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int ans =b/a;
		if(b%a==0){
			System.out.println(ans);
		}else{
			System.out.println("NO");
		}
	}
}
0