結果

問題 No.477 MVP
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-18 23:18:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 219 bytes
コンパイル時間 3,317 ms
コンパイル使用メモリ 73,936 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-06-28 13:59:54
合計ジャッジ時間 5,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,084 KB
testcase_01 AC 131 ms
41,068 KB
testcase_02 AC 132 ms
41,036 KB
testcase_03 AC 136 ms
41,200 KB
testcase_04 AC 132 ms
40,996 KB
testcase_05 AC 132 ms
41,196 KB
testcase_06 AC 131 ms
41,312 KB
testcase_07 AC 131 ms
41,044 KB
testcase_08 AC 131 ms
41,260 KB
testcase_09 AC 131 ms
41,180 KB
testcase_10 AC 130 ms
41,072 KB
testcase_11 AC 131 ms
40,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No477{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		long N = sc.nextLong();
		long K = sc.nextLong();

		System.out.println(N/(K+1)+1);
	}
}
0