結果

問題 No.388 階段 (1)
ユーザー omc-testomc-test
提出日時 2016-12-14 17:29:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 3,339 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 52,548 KB
最終ジャッジ日時 2024-11-30 07:32:50
合計ジャッジ時間 5,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
51,012 KB
testcase_01 AC 115 ms
52,548 KB
testcase_02 AC 118 ms
52,312 KB
testcase_03 AC 104 ms
50,960 KB
testcase_04 AC 112 ms
51,764 KB
testcase_05 AC 114 ms
51,756 KB
testcase_06 AC 110 ms
52,168 KB
testcase_07 AC 125 ms
51,852 KB
testcase_08 AC 108 ms
50,828 KB
testcase_09 AC 115 ms
52,168 KB
testcase_10 AC 116 ms
52,124 KB
testcase_11 AC 101 ms
50,352 KB
testcase_12 AC 113 ms
51,704 KB
testcase_13 AC 117 ms
52,028 KB
testcase_14 AC 104 ms
50,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No0388 {

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

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