結果

問題 No.485 方程式のお勉強
ユーザー yamax3232yamax3232
提出日時 2018-03-15 08:14:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 73,616 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-05-08 17:31:01
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,948 KB
testcase_01 AC 118 ms
40,908 KB
testcase_02 AC 115 ms
41,076 KB
testcase_03 AC 116 ms
41,244 KB
testcase_04 AC 118 ms
41,236 KB
testcase_05 AC 101 ms
39,816 KB
testcase_06 AC 114 ms
41,028 KB
testcase_07 AC 117 ms
41,060 KB
testcase_08 AC 117 ms
41,304 KB
testcase_09 AC 110 ms
40,032 KB
testcase_10 AC 116 ms
40,812 KB
testcase_11 AC 118 ms
41,296 KB
testcase_12 AC 116 ms
41,136 KB
testcase_13 AC 114 ms
41,040 KB
testcase_14 AC 107 ms
40,112 KB
testcase_15 AC 116 ms
40,872 KB
testcase_16 AC 107 ms
39,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int p=kb.nextInt();
		int q=kb.nextInt();
		if(q%p==0)
			System.out.println(q/p);
		else{
			System.out.println("NO");
		}
	}
}
0