結果

問題 No.477 MVP
ユーザー yagi2yagi2
提出日時 2017-04-14 11:04:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 109 ms / 1,000 ms
コード長 382 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 47,440 KB
最終ジャッジ日時 2024-07-18 15:14:45
合計ジャッジ時間 3,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
47,440 KB
testcase_01 AC 104 ms
41,344 KB
testcase_02 AC 101 ms
41,184 KB
testcase_03 AC 106 ms
41,192 KB
testcase_04 AC 94 ms
41,872 KB
testcase_05 AC 108 ms
41,288 KB
testcase_06 AC 107 ms
41,796 KB
testcase_07 AC 100 ms
41,320 KB
testcase_08 AC 94 ms
41,512 KB
testcase_09 AC 109 ms
41,460 KB
testcase_10 AC 101 ms
40,176 KB
testcase_11 AC 103 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

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

        BigInteger N = new BigInteger(sc.next());
        BigInteger K = new BigInteger(sc.next());

        N = N.divide(K.add(new BigInteger("1")));
        System.out.println(N.add(new BigInteger("1")));
    }
}
0