結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,072 KB
testcase_01 AC 107 ms
41,136 KB
testcase_02 AC 112 ms
41,380 KB
testcase_03 AC 98 ms
41,336 KB
testcase_04 AC 119 ms
41,164 KB
testcase_05 AC 116 ms
41,244 KB
testcase_06 AC 101 ms
41,448 KB
testcase_07 AC 120 ms
40,952 KB
testcase_08 AC 116 ms
41,072 KB
testcase_09 AC 115 ms
40,320 KB
testcase_10 AC 117 ms
41,472 KB
testcase_11 AC 109 ms
41,316 KB
testcase_12 AC 109 ms
41,528 KB
testcase_13 AC 107 ms
41,292 KB
testcase_14 AC 117 ms
41,460 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