結果

問題 No.388 階段 (1)
ユーザー ukakukak
提出日時 2017-01-05 08:44:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 2,390 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-12-16 09:09:31
合計ジャッジ時間 5,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,300 KB
testcase_01 AC 144 ms
41,284 KB
testcase_02 AC 143 ms
41,308 KB
testcase_03 AC 141 ms
41,488 KB
testcase_04 AC 131 ms
40,148 KB
testcase_05 AC 140 ms
41,440 KB
testcase_06 AC 143 ms
41,488 KB
testcase_07 AC 143 ms
41,196 KB
testcase_08 AC 129 ms
40,236 KB
testcase_09 AC 140 ms
41,196 KB
testcase_10 AC 136 ms
41,436 KB
testcase_11 AC 142 ms
41,056 KB
testcase_12 AC 141 ms
41,384 KB
testcase_13 AC 138 ms
41,204 KB
testcase_14 AC 145 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        try (Scanner in = new Scanner(System.in)) {
            int S = in.nextInt();
            int F = in.nextInt();
            System.out.println(S / F + 1);
        }
    }
}
0