結果

問題 No.477 MVP
ユーザー zimphazimpha
提出日時 2017-03-31 02:14:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,789 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 77,592 KB
実行使用メモリ 50,464 KB
最終ジャッジ日時 2024-07-07 03:17:22
合計ジャッジ時間 3,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,392 KB
testcase_01 AC 48 ms
50,432 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 46 ms
50,084 KB
testcase_05 WA -
testcase_06 AC 48 ms
50,160 KB
testcase_07 AC 47 ms
50,028 KB
testcase_08 AC 45 ms
50,456 KB
testcase_09 AC 46 ms
50,120 KB
testcase_10 AC 45 ms
50,440 KB
testcase_11 AC 47 ms
50,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.StringTokenizer;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author Chiaki.Hoshinomori
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task477 solver = new Task477();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task477 {
        public void solve(int testNumber, InputReader in, PrintWriter out) {
            long n = in.nextLong();
            long k = in.nextLong() + 1;
            long ret = n / k;
            if (n % k != 0) ++ret;
            out.println(ret);
        }

    }

    static class InputReader {
        public BufferedReader reader;
        public StringTokenizer tokenizer;

        public InputReader(InputStream stream) {
            reader = new BufferedReader(new InputStreamReader(stream), 32768);
            tokenizer = null;
        }

        public String next() {
            while (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        public long nextLong() {
            return Long.parseLong(next());
        }

    }
}

0