結果

問題 No.46 はじめのn歩
ユーザー mura40424mura40424
提出日時 2014-11-23 14:41:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 75,748 KB
実行使用メモリ 54,916 KB
最終ジャッジ日時 2025-01-02 20:16:09
合計ジャッジ時間 4,202 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,892 KB
testcase_01 AC 119 ms
54,488 KB
testcase_02 AC 123 ms
54,792 KB
testcase_03 AC 135 ms
54,916 KB
testcase_04 AC 128 ms
54,888 KB
testcase_05 AC 132 ms
54,824 KB
testcase_06 AC 126 ms
54,788 KB
testcase_07 AC 133 ms
54,784 KB
testcase_08 AC 122 ms
54,916 KB
testcase_09 AC 121 ms
54,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner S = new Scanner(System.in);
		double a = S.nextDouble();
		double b = S.nextDouble();

		System.out.println((int)Math.ceil(b/a));
	}
}
0