結果

問題 No.388 階段 (1)
ユーザー d_makid_maki
提出日時 2019-03-11 16:30:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 2,973 ms
コンパイル使用メモリ 75,048 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-06-23 15:36:20
合計ジャッジ時間 5,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,152 KB
testcase_01 AC 114 ms
53,724 KB
testcase_02 AC 103 ms
53,108 KB
testcase_03 AC 114 ms
54,096 KB
testcase_04 AC 112 ms
54,340 KB
testcase_05 AC 117 ms
53,784 KB
testcase_06 AC 125 ms
54,040 KB
testcase_07 AC 120 ms
54,140 KB
testcase_08 AC 118 ms
53,960 KB
testcase_09 AC 115 ms
54,044 KB
testcase_10 AC 105 ms
53,000 KB
testcase_11 AC 112 ms
54,172 KB
testcase_12 AC 100 ms
52,788 KB
testcase_13 AC 105 ms
53,180 KB
testcase_14 AC 108 ms
53,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No388 {
	private static final String k = " ";

	public static void main(String[] args) {
		String input = null;
		Scanner sc = new Scanner(System.in);
		input = sc.nextLine();
		String[] split = input.split(k);
		int a = Integer.parseInt(split[0]);
		int b = Integer.parseInt(split[1]);

		int c = (a / b) + 1;
		System.out.println(c);
		sc.close();
	}

}
0