結果

問題 No.388 階段 (1)
ユーザー kick1128kick1128
提出日時 2021-12-04 21:43:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 2,627 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-07-07 04:40:21
合計ジャッジ時間 5,001 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
54,120 KB
testcase_01 AC 107 ms
53,900 KB
testcase_02 AC 106 ms
53,840 KB
testcase_03 AC 96 ms
52,828 KB
testcase_04 AC 108 ms
53,824 KB
testcase_05 AC 110 ms
53,988 KB
testcase_06 AC 94 ms
52,244 KB
testcase_07 AC 104 ms
53,788 KB
testcase_08 AC 97 ms
53,072 KB
testcase_09 AC 104 ms
53,672 KB
testcase_10 AC 105 ms
53,980 KB
testcase_11 AC 106 ms
54,276 KB
testcase_12 AC 108 ms
53,844 KB
testcase_13 AC 105 ms
54,064 KB
testcase_14 AC 106 ms
53,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

import java.io.IOException;
import java.util.Scanner;


public class Test {

	public static void main(String[] args) throws IOException {

		 // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
		// 現在の段数
        int a = sc.nextInt();
        // 一回層の段数
        int b = sc.nextInt();
        sc.close();

        System.out.println( (a / b) + 1 );
	}

}
0