結果

問題 No.477 MVP
ユーザー fjafjafjafjafjafja
提出日時 2017-09-01 23:05:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 299 bytes
コンパイル時間 3,710 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-11-06 17:52:06
合計ジャッジ時間 6,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,188 KB
testcase_01 AC 128 ms
41,392 KB
testcase_02 AC 127 ms
41,248 KB
testcase_03 AC 131 ms
41,536 KB
testcase_04 AC 128 ms
41,116 KB
testcase_05 AC 126 ms
41,280 KB
testcase_06 AC 127 ms
41,020 KB
testcase_07 AC 122 ms
40,172 KB
testcase_08 AC 132 ms
41,292 KB
testcase_09 AC 125 ms
41,176 KB
testcase_10 AC 131 ms
41,504 KB
testcase_11 AC 127 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N477
{
	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		long N=sc.nextLong();
		long K=sc.nextLong();
		long ans=1;
		if(N<K){}
		else if(N>=K)
			{
				ans=N/(K+1)+1;
			}
		System.out.println(ans);
	}

}
0