結果

問題 No.477 MVP
ユーザー history_Basshistory_Bass
提出日時 2017-02-25 13:48:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 1,000 ms
コード長 484 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 75,556 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-06-11 14:57:50
合計ジャッジ時間 4,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,268 KB
testcase_01 AC 116 ms
41,596 KB
testcase_02 AC 111 ms
41,196 KB
testcase_03 AC 94 ms
40,008 KB
testcase_04 AC 98 ms
40,068 KB
testcase_05 AC 95 ms
39,960 KB
testcase_06 AC 95 ms
40,156 KB
testcase_07 AC 101 ms
40,848 KB
testcase_08 AC 96 ms
40,084 KB
testcase_09 AC 104 ms
40,808 KB
testcase_10 AC 95 ms
40,136 KB
testcase_11 AC 106 ms
40,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class mvp {
	public static void main(String args[]){
		long N=100,K=2,answer=0;
		
		//文字の読み込み
		Scanner sc=new Scanner(System.in);
		String line=sc.nextLine();
		String[] NandK=line.split(" ",0);
		//文字を分割して型変換
		long[] j=new long[2];
		j[0]=Long.parseLong(NandK[0]);
		j[1]=Long.parseLong(NandK[1]);
		//文字の代入
		N=j[0];
		K=j[1];
		
		//回答の計算
		answer=N/(K+1)+1;
		
		System.out.println(answer);
	}
}
0