結果

問題 No.388 階段 (1)
ユーザー YOSHIYOSHI
提出日時 2021-03-12 22:32:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 3,298 ms
コンパイル使用メモリ 73,696 KB
実行使用メモリ 37,056 KB
最終ジャッジ日時 2024-04-22 13:36:40
合計ジャッジ時間 5,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,672 KB
testcase_01 AC 46 ms
36,724 KB
testcase_02 AC 47 ms
36,908 KB
testcase_03 AC 47 ms
36,984 KB
testcase_04 AC 46 ms
36,476 KB
testcase_05 AC 48 ms
36,864 KB
testcase_06 AC 47 ms
36,888 KB
testcase_07 AC 47 ms
36,960 KB
testcase_08 AC 48 ms
36,864 KB
testcase_09 AC 46 ms
36,876 KB
testcase_10 AC 46 ms
36,852 KB
testcase_11 AC 47 ms
36,964 KB
testcase_12 AC 45 ms
37,056 KB
testcase_13 AC 46 ms
36,672 KB
testcase_14 AC 46 ms
37,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000388_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String[] arr = br.readLine().split(" ");
		System.out.println((Integer.parseInt(arr[0]) / Integer.parseInt(arr[1])) + 1);
	}
}
0