結果

問題 No.477 MVP
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-01-27 23:55:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-06-06 05:51:49
合計ジャッジ時間 4,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,504 KB
testcase_01 AC 136 ms
41,316 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 134 ms
41,064 KB
testcase_05 WA -
testcase_06 AC 120 ms
39,956 KB
testcase_07 AC 136 ms
41,368 KB
testcase_08 AC 136 ms
41,152 KB
testcase_09 AC 137 ms
41,392 KB
testcase_10 AC 135 ms
41,496 KB
testcase_11 AC 136 ms
41,484 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;
        }
        System.out.println(ans);
    }
}
0