結果

問題 No.388 階段 (1)
ユーザー papipenpapipen
提出日時 2017-03-23 21:47:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-07-05 18:55:13
合計ジャッジ時間 4,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,156 KB
testcase_01 AC 126 ms
40,908 KB
testcase_02 AC 126 ms
41,268 KB
testcase_03 AC 127 ms
40,960 KB
testcase_04 AC 127 ms
41,108 KB
testcase_05 AC 115 ms
40,772 KB
testcase_06 AC 126 ms
41,276 KB
testcase_07 AC 127 ms
41,000 KB
testcase_08 AC 125 ms
41,152 KB
testcase_09 AC 128 ms
41,504 KB
testcase_10 AC 125 ms
41,004 KB
testcase_11 AC 127 ms
41,260 KB
testcase_12 AC 125 ms
41,368 KB
testcase_13 AC 127 ms
41,016 KB
testcase_14 AC 125 ms
41,260 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