結果

問題 No.388 階段 (1)
ユーザー Ryugo AbeRyugo Abe
提出日時 2016-12-15 12:00:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 1,845 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-05-07 14:49:05
合計ジャッジ時間 4,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,008 KB
testcase_01 AC 114 ms
54,148 KB
testcase_02 AC 114 ms
54,016 KB
testcase_03 AC 117 ms
54,260 KB
testcase_04 AC 104 ms
52,784 KB
testcase_05 AC 110 ms
53,228 KB
testcase_06 AC 121 ms
54,204 KB
testcase_07 AC 104 ms
53,156 KB
testcase_08 AC 118 ms
54,088 KB
testcase_09 AC 119 ms
53,936 KB
testcase_10 AC 103 ms
52,936 KB
testcase_11 AC 116 ms
54,060 KB
testcase_12 AC 117 ms
54,388 KB
testcase_13 AC 117 ms
53,888 KB
testcase_14 AC 110 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        // a b ともに正の整数。(1≤a,b≤109)
        int s = sc.nextInt();
        int f = sc.nextInt();

        System.out.println(s / f + 1);
    }
}
0