結果

問題 No.485 方程式のお勉強
ユーザー FVRChanFVRChan
提出日時 2017-09-29 12:30:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 73,632 KB
実行使用メモリ 56,136 KB
最終ジャッジ日時 2024-11-15 19:52:13
合計ジャッジ時間 5,304 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 135 ms
53,992 KB
testcase_02 AC 135 ms
54,248 KB
testcase_03 WA -
testcase_04 AC 136 ms
54,044 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 133 ms
53,712 KB
testcase_08 WA -
testcase_09 AC 134 ms
53,656 KB
testcase_10 AC 133 ms
53,796 KB
testcase_11 AC 138 ms
53,972 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 136 ms
54,092 KB
testcase_15 AC 135 ms
53,856 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int a=sc.nextInt(),b=sc.nextInt();
		if(b%a==0)System.out.println(b/a);
		else System.out.println(-1);
	}
}
0