結果

問題 No.477 MVP
ユーザー tentententen
提出日時 2020-09-11 10:22:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 230 bytes
コンパイル時間 2,733 ms
コンパイル使用メモリ 73,880 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-12-25 12:42:12
合計ジャッジ時間 5,630 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,100 KB
testcase_01 AC 153 ms
41,112 KB
testcase_02 AC 149 ms
41,004 KB
testcase_03 AC 154 ms
41,272 KB
testcase_04 AC 154 ms
40,984 KB
testcase_05 AC 152 ms
41,012 KB
testcase_06 AC 160 ms
41,304 KB
testcase_07 AC 158 ms
41,160 KB
testcase_08 AC 164 ms
41,180 KB
testcase_09 AC 161 ms
41,660 KB
testcase_10 AC 162 ms
41,528 KB
testcase_11 AC 163 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long n = sc.nextLong();
    	long m = sc.nextLong();
    	System.out.println(n / (m + 1) + 1);
	}
}
0