結果

問題 No.388 階段 (1)
ユーザー papipenpapipen
提出日時 2017-03-23 21:47:53
言語 Java19
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 5,035 ms
コンパイル使用メモリ 71,284 KB
実行使用メモリ 55,828 KB
最終ジャッジ日時 2023-09-19 06:45:01
合計ジャッジ時間 5,571 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
55,804 KB
testcase_01 AC 132 ms
55,692 KB
testcase_02 AC 128 ms
55,692 KB
testcase_03 AC 133 ms
55,692 KB
testcase_04 AC 130 ms
55,588 KB
testcase_05 AC 130 ms
55,520 KB
testcase_06 AC 130 ms
55,772 KB
testcase_07 AC 133 ms
53,764 KB
testcase_08 AC 132 ms
55,740 KB
testcase_09 AC 130 ms
55,784 KB
testcase_10 AC 131 ms
55,828 KB
testcase_11 AC 129 ms
55,668 KB
testcase_12 AC 132 ms
55,520 KB
testcase_13 AC 128 ms
55,720 KB
testcase_14 AC 129 ms
55,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Kaidan{
  public static void main(String args[]){
    Scanner sc = new Scanner(System.in);
    int a = sc.nextInt();
    int b = sc.nextInt();
    System.out.println(a/b + 1);
  }
}
0