結果

問題 No.477 MVP
ユーザー tsunabittsunabit
提出日時 2019-06-09 18:16:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 344 bytes
コンパイル時間 3,350 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-10-06 00:13:53
合計ジャッジ時間 5,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,868 KB
testcase_01 AC 118 ms
41,196 KB
testcase_02 AC 108 ms
40,984 KB
testcase_03 AC 121 ms
41,328 KB
testcase_04 AC 123 ms
41,396 KB
testcase_05 AC 119 ms
41,052 KB
testcase_06 AC 114 ms
41,284 KB
testcase_07 AC 117 ms
40,936 KB
testcase_08 AC 118 ms
40,940 KB
testcase_09 AC 117 ms
41,512 KB
testcase_10 AC 116 ms
41,188 KB
testcase_11 AC 117 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class No477 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong(), k = sc.nextLong();
        System.out.println(n / (k + 1) + 1);
    }
}
0