結果

問題 No.477 MVP
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-13 17:20:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 217 bytes
コンパイル時間 3,332 ms
コンパイル使用メモリ 73,932 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-11-29 18:34:54
合計ジャッジ時間 4,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,916 KB
testcase_01 AC 138 ms
54,084 KB
testcase_02 AC 133 ms
54,236 KB
testcase_03 AC 136 ms
54,044 KB
testcase_04 AC 135 ms
53,856 KB
testcase_05 AC 136 ms
54,028 KB
testcase_06 AC 135 ms
53,828 KB
testcase_07 AC 133 ms
53,996 KB
testcase_08 AC 121 ms
52,648 KB
testcase_09 AC 135 ms
53,800 KB
testcase_10 AC 134 ms
53,728 KB
testcase_11 AC 133 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		long n = sc.nextLong();
		long k = sc.nextLong();
		System.out.println(n/(k+1)+1);
	}
}
0