結果

問題 No.46 はじめのn歩
ユーザー brave_reverse_brave_reverse_
提出日時 2016-01-07 13:35:23
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 259 bytes
コンパイル時間 4,031 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 41,932 KB
最終ジャッジ日時 2024-09-19 12:29:14
合計ジャッジ時間 4,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,932 KB
testcase_01 AC 120 ms
41,388 KB
testcase_02 AC 126 ms
41,788 KB
testcase_03 AC 109 ms
41,784 KB
testcase_04 AC 122 ms
41,472 KB
testcase_05 AC 129 ms
41,916 KB
testcase_06 AC 131 ms
41,628 KB
testcase_07 AC 124 ms
41,740 KB
testcase_08 AC 127 ms
41,656 KB
testcase_09 AC 124 ms
41,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;
import java.util.Scanner;

public class QNo46 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double a = sc.nextDouble();
		double b = sc.nextDouble();
		System.out.println((int)Math.ceil(b/a));
	}

}
0