結果

問題 No.477 MVP
ユーザー tanzakutanzaku
提出日時 2017-01-27 22:24:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 551 bytes
コンパイル時間 3,973 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-06-06 04:35:37
合計ジャッジ時間 5,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,328 KB
testcase_01 AC 134 ms
41,476 KB
testcase_02 AC 138 ms
41,360 KB
testcase_03 AC 137 ms
41,100 KB
testcase_04 AC 135 ms
41,540 KB
testcase_05 AC 137 ms
41,260 KB
testcase_06 AC 135 ms
41,264 KB
testcase_07 AC 135 ms
41,412 KB
testcase_08 AC 142 ms
41,584 KB
testcase_09 AC 131 ms
41,324 KB
testcase_10 AC 144 ms
41,268 KB
testcase_11 AC 136 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class _477 {
	public static void main(String[] args) throws IOException {
		new _477().solve();
	}

	void solve() throws IOException {
		try (final Scanner in = new Scanner(System.in)) {
			long n = in.nextLong();
			long k = in.nextLong();
			System.out.println((n + k + 1) / (k + 1));
		}
	}
	
	// for debug
	static void dump(Object... o) {
		System.err.println(Arrays.deepToString(o));
	}
}
0