結果

問題 No.485 方程式のお勉強
ユーザー yamax3232yamax3232
提出日時 2018-03-15 08:13:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 314 bytes
コンパイル時間 2,861 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-05-08 17:23:38
合計ジャッジ時間 4,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,240 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 119 ms
41,136 KB
testcase_04 WA -
testcase_05 AC 109 ms
40,196 KB
testcase_06 AC 124 ms
41,264 KB
testcase_07 WA -
testcase_08 AC 123 ms
41,208 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 123 ms
41,008 KB
testcase_13 AC 120 ms
41,148 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 114 ms
40,988 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