結果

問題 No.477 MVP
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-01-27 23:54:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 394 bytes
コンパイル時間 3,142 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-06-06 05:50:54
合計ジャッジ時間 5,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,800 KB
testcase_01 AC 133 ms
53,700 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 125 ms
53,744 KB
testcase_05 WA -
testcase_06 AC 126 ms
53,960 KB
testcase_07 AC 122 ms
53,704 KB
testcase_08 AC 130 ms
53,996 KB
testcase_09 AC 127 ms
54,084 KB
testcase_10 AC 132 ms
53,840 KB
testcase_11 AC 129 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        long K = sc.nextLong();
        long ans = 0;
        long D = K+1;
        if(N%D==0){
            ans=N/D;
        }else{
            ans=N/D+1;
        }
        if(ans==0)ans=1;
        System.out.println(ans);
    }
}
0