結果

問題 No.46 はじめのn歩
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 14:38:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 73,820 KB
実行使用メモリ 42,140 KB
最終ジャッジ日時 2024-06-23 23:47:52
合計ジャッジ時間 3,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,660 KB
testcase_01 AC 133 ms
41,548 KB
testcase_02 AC 117 ms
41,144 KB
testcase_03 AC 136 ms
42,140 KB
testcase_04 AC 128 ms
41,660 KB
testcase_05 AC 130 ms
41,452 KB
testcase_06 AC 125 ms
40,816 KB
testcase_07 AC 135 ms
41,840 KB
testcase_08 AC 134 ms
42,008 KB
testcase_09 AC 136 ms
41,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		double A=s.nextDouble(),B=s.nextDouble();
		System.out.println((int)Math.ceil(B/A));
	}
}
0