結果

問題 No.388 階段 (1)
ユーザー qorrnsmjqorrnsmj
提出日時 2022-07-14 15:05:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 3,145 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-06-25 22:33:53
合計ジャッジ時間 5,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,656 KB
testcase_01 AC 113 ms
53,156 KB
testcase_02 AC 121 ms
53,808 KB
testcase_03 AC 123 ms
53,528 KB
testcase_04 AC 119 ms
53,676 KB
testcase_05 AC 115 ms
53,540 KB
testcase_06 AC 122 ms
53,816 KB
testcase_07 AC 124 ms
53,876 KB
testcase_08 AC 114 ms
52,940 KB
testcase_09 AC 125 ms
54,288 KB
testcase_10 AC 123 ms
53,620 KB
testcase_11 AC 122 ms
54,104 KB
testcase_12 AC 122 ms
54,164 KB
testcase_13 AC 122 ms
53,760 KB
testcase_14 AC 128 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class no388 {
    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