結果

問題 No.388 階段 (1)
ユーザー dazydazy
提出日時 2016-08-31 15:27:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 2,648 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-11-14 12:57:06
合計ジャッジ時間 4,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,848 KB
testcase_01 AC 116 ms
52,852 KB
testcase_02 AC 111 ms
52,872 KB
testcase_03 AC 128 ms
54,184 KB
testcase_04 AC 125 ms
54,076 KB
testcase_05 AC 127 ms
53,988 KB
testcase_06 AC 128 ms
54,284 KB
testcase_07 AC 128 ms
54,408 KB
testcase_08 AC 130 ms
54,284 KB
testcase_09 AC 131 ms
54,476 KB
testcase_10 AC 129 ms
54,516 KB
testcase_11 AC 130 ms
54,260 KB
testcase_12 AC 128 ms
54,408 KB
testcase_13 AC 126 ms
53,956 KB
testcase_14 AC 127 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Procon {
    static public void main(String[] args) {
        int S, F;
        Scanner scanner = new Scanner(System.in);

        S = scanner.nextInt();
        F = scanner.nextInt();

        int ans = S / F + 1;

        System.out.printf("%d\n", ans);
    }
}
0