結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
53,240 KB
testcase_01 AC 103 ms
52,584 KB
testcase_02 WA -
testcase_03 AC 113 ms
53,732 KB
testcase_04 AC 112 ms
54,100 KB
testcase_05 AC 109 ms
53,856 KB
testcase_06 AC 115 ms
53,892 KB
testcase_07 AC 103 ms
52,596 KB
testcase_08 AC 110 ms
53,812 KB
testcase_09 AC 112 ms
53,972 KB
testcase_10 AC 100 ms
52,916 KB
testcase_11 AC 107 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No477 {

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