結果
問題 |
No.477 MVP
|
ユーザー |
|
提出日時 | 2017-03-31 02:15:53 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 48 ms / 1,000 ms |
コード長 | 1,758 bytes |
コンパイル時間 | 1,817 ms |
コンパイル使用メモリ | 77,796 KB |
実行使用メモリ | 50,444 KB |
最終ジャッジ日時 | 2024-07-07 03:17:26 |
合計ジャッジ時間 | 2,812 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
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 + 1; 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()); } } }