結果

問題 No.46 はじめのn歩
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-22 19:09:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 3,512 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-07-08 11:50:38
合計ジャッジ時間 5,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,188 KB
testcase_01 AC 132 ms
41,392 KB
testcase_02 AC 133 ms
41,380 KB
testcase_03 AC 133 ms
41,472 KB
testcase_04 AC 118 ms
40,320 KB
testcase_05 AC 118 ms
40,268 KB
testcase_06 AC 132 ms
41,548 KB
testcase_07 AC 132 ms
41,288 KB
testcase_08 AC 121 ms
40,016 KB
testcase_09 AC 122 ms
40,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No46 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		double a =sc.nextInt();
		double b =sc.nextInt();		
		System.out.println((int)Math.ceil(b/a));
			
	}
}
0