結果

問題 No.477 MVP
ユーザー tanzakutanzaku
提出日時 2017-01-27 22:23:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 3,557 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 55,976 KB
最終ジャッジ日時 2024-06-06 04:34:56
合計ジャッジ時間 6,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,524 KB
testcase_01 AC 132 ms
41,308 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 137 ms
41,236 KB
testcase_05 WA -
testcase_06 AC 137 ms
41,316 KB
testcase_07 AC 135 ms
41,420 KB
testcase_08 AC 138 ms
41,364 KB
testcase_09 AC 120 ms
39,952 KB
testcase_10 AC 138 ms
41,364 KB
testcase_11 AC 135 ms
41,516 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) / (k + 1));
		}
	}
	
	// for debug
	static void dump(Object... o) {
		System.err.println(Arrays.deepToString(o));
	}
}
0