結果

問題 No.477 MVP
ユーザー happy-beanshappy-beans
提出日時 2017-03-14 22:18:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 318 bytes
コンパイル時間 2,791 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 54,036 KB
最終ジャッジ日時 2024-06-30 00:46:42
合計ジャッジ時間 4,753 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,956 KB
testcase_01 AC 125 ms
53,980 KB
testcase_02 AC 100 ms
52,444 KB
testcase_03 AC 101 ms
52,908 KB
testcase_04 AC 120 ms
53,972 KB
testcase_05 AC 116 ms
53,968 KB
testcase_06 AC 113 ms
53,920 KB
testcase_07 AC 117 ms
53,796 KB
testcase_08 AC 119 ms
53,828 KB
testcase_09 AC 105 ms
52,840 KB
testcase_10 AC 120 ms
54,036 KB
testcase_11 AC 111 ms
53,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No477 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner s = new Scanner(System.in);
		
		long n = s.nextLong();
		long k = s.nextLong();
		
		long m = n % (k + 1);
		long ans = (n - m) / (k + 1) + 1;
		
		System.out.println(ans);
	}

}
0