結果

問題 No.477 MVP
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-13 17:20:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 1,000 ms
コード長 217 bytes
コンパイル時間 2,899 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-05-07 05:05:01
合計ジャッジ時間 4,448 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,012 KB
testcase_01 AC 113 ms
41,108 KB
testcase_02 AC 107 ms
40,024 KB
testcase_03 AC 114 ms
40,972 KB
testcase_04 AC 115 ms
41,216 KB
testcase_05 AC 101 ms
40,132 KB
testcase_06 AC 114 ms
41,320 KB
testcase_07 AC 102 ms
39,864 KB
testcase_08 AC 98 ms
40,356 KB
testcase_09 AC 116 ms
41,252 KB
testcase_10 AC 113 ms
40,956 KB
testcase_11 AC 103 ms
39,904 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