結果

問題 No.477 MVP
ユーザー fal_rndfal_rnd
提出日時 2017-01-27 22:30:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 210 bytes
コンパイル時間 3,244 ms
コンパイル使用メモリ 71,700 KB
実行使用メモリ 56,056 KB
最終ジャッジ日時 2023-08-25 04:01:23
合計ジャッジ時間 5,499 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,656 KB
testcase_01 AC 123 ms
55,820 KB
testcase_02 AC 125 ms
55,720 KB
testcase_03 AC 127 ms
55,628 KB
testcase_04 AC 126 ms
55,764 KB
testcase_05 AC 127 ms
55,680 KB
testcase_06 AC 125 ms
55,600 KB
testcase_07 AC 125 ms
56,056 KB
testcase_08 AC 125 ms
55,960 KB
testcase_09 AC 125 ms
56,004 KB
testcase_10 AC 125 ms
55,608 KB
testcase_11 AC 124 ms
55,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicodercontest155;

import java.util.*;
public class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args){
		System.out.println(s.nextLong()/(s.nextLong()+1)+1);
	}
}
0