結果

問題 No.388 階段 (1)
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-04 12:18:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 45,820 KB
最終ジャッジ日時 2024-09-14 07:02:17
合計ジャッジ時間 3,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
45,820 KB
testcase_01 AC 53 ms
36,892 KB
testcase_02 AC 54 ms
36,724 KB
testcase_03 AC 53 ms
36,896 KB
testcase_04 AC 53 ms
36,764 KB
testcase_05 AC 53 ms
36,504 KB
testcase_06 AC 53 ms
36,880 KB
testcase_07 AC 52 ms
36,976 KB
testcase_08 AC 52 ms
36,836 KB
testcase_09 AC 52 ms
36,896 KB
testcase_10 AC 52 ms
36,956 KB
testcase_11 AC 54 ms
36,800 KB
testcase_12 AC 54 ms
36,880 KB
testcase_13 AC 53 ms
36,944 KB
testcase_14 AC 53 ms
36,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        int S = Integer.parseInt(inputs[0]);
        int F = Integer.parseInt(inputs[1]);
        System.out.println((S+F) /F);
    }
}
0