結果

問題 No.388 階段 (1)
ユーザー Shunsuke KamadaShunsuke Kamada
提出日時 2018-09-25 21:57:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 4,009 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-10-06 03:20:52
合計ジャッジ時間 5,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,952 KB
testcase_01 AC 121 ms
54,096 KB
testcase_02 AC 122 ms
54,040 KB
testcase_03 AC 120 ms
54,000 KB
testcase_04 AC 109 ms
53,396 KB
testcase_05 AC 105 ms
52,840 KB
testcase_06 AC 122 ms
54,168 KB
testcase_07 AC 125 ms
54,504 KB
testcase_08 AC 124 ms
54,488 KB
testcase_09 AC 117 ms
54,060 KB
testcase_10 AC 119 ms
54,040 KB
testcase_11 AC 126 ms
54,152 KB
testcase_12 AC 117 ms
54,320 KB
testcase_13 AC 119 ms
54,204 KB
testcase_14 AC 111 ms
53,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.*;

public class No0388 {
    public static void main(String[] args) {

        Scanner scanner = new Scanner(System.in);
        PrintWriter out = new PrintWriter(System.out);

        int s = scanner.nextInt();
        int f = scanner.nextInt();
        int ans = s/f+1;
        out.println(ans);
        out.flush();
    }
}
0