結果

問題 No.477 MVP
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-04 11:38:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 487 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 36,940 KB
最終ジャッジ日時 2024-09-14 06:57:01
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,760 KB
testcase_01 AC 52 ms
36,760 KB
testcase_02 AC 53 ms
36,704 KB
testcase_03 AC 54 ms
36,696 KB
testcase_04 AC 53 ms
36,760 KB
testcase_05 AC 52 ms
36,580 KB
testcase_06 AC 52 ms
36,476 KB
testcase_07 AC 53 ms
36,924 KB
testcase_08 AC 51 ms
36,940 KB
testcase_09 AC 52 ms
36,924 KB
testcase_10 AC 52 ms
36,476 KB
testcase_11 AC 52 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(" ");
        long N = Long.parseLong(inputs[0]);
        long K = Long.parseLong(inputs[1]);


        System.out.println(N/(K+1) + 1);
    }
}
0