結果

問題 No.388 階段 (1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-19 20:51:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 1,951 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 54,768 KB
最終ジャッジ日時 2024-10-02 07:52:07
合計ジャッジ時間 4,664 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
52,760 KB
testcase_01 AC 127 ms
54,176 KB
testcase_02 AC 128 ms
54,264 KB
testcase_03 AC 127 ms
54,328 KB
testcase_04 AC 129 ms
53,960 KB
testcase_05 AC 131 ms
53,988 KB
testcase_06 AC 129 ms
54,136 KB
testcase_07 AC 128 ms
54,248 KB
testcase_08 AC 131 ms
54,244 KB
testcase_09 AC 133 ms
53,936 KB
testcase_10 AC 131 ms
53,980 KB
testcase_11 AC 131 ms
54,160 KB
testcase_12 AC 129 ms
54,256 KB
testcase_13 AC 128 ms
54,768 KB
testcase_14 AC 128 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int s = sc.nextInt();
    int f = sc.nextInt();
    System.out.println(s / f + 1);
  }
}
0