結果

問題 No.477 MVP
ユーザー fal_rndfal_rnd
提出日時 2017-01-27 22:30:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 210 bytes
コンパイル時間 3,105 ms
コンパイル使用メモリ 77,560 KB
実行使用メモリ 41,308 KB
最終ジャッジ日時 2024-06-06 04:43:29
合計ジャッジ時間 5,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,268 KB
testcase_01 AC 118 ms
41,064 KB
testcase_02 AC 117 ms
40,480 KB
testcase_03 AC 120 ms
41,152 KB
testcase_04 AC 121 ms
41,296 KB
testcase_05 AC 125 ms
41,244 KB
testcase_06 AC 110 ms
39,944 KB
testcase_07 AC 117 ms
41,236 KB
testcase_08 AC 118 ms
41,308 KB
testcase_09 AC 120 ms
40,988 KB
testcase_10 AC 118 ms
41,216 KB
testcase_11 AC 120 ms
40,876 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