結果

問題 No.46 はじめのn歩
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-04 01:48:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 260 bytes
コンパイル時間 2,688 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-06-26 08:37:47
合計ジャッジ時間 3,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,224 KB
testcase_01 AC 124 ms
40,944 KB
testcase_02 AC 126 ms
41,144 KB
testcase_03 AC 126 ms
41,312 KB
testcase_04 AC 128 ms
41,172 KB
testcase_05 AC 130 ms
41,184 KB
testcase_06 AC 127 ms
41,140 KB
testcase_07 AC 116 ms
40,036 KB
testcase_08 AC 116 ms
40,076 KB
testcase_09 AC 129 ms
41,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder1_0;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double  a = sc.nextInt();
		double b = sc.nextInt();

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

	}

}
0