結果

問題 No.477 MVP
ユーザー tentententen
提出日時 2020-09-11 10:22:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 230 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 73,792 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-06-07 10:20:21
合計ジャッジ時間 4,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,276 KB
testcase_01 AC 126 ms
41,164 KB
testcase_02 AC 126 ms
41,516 KB
testcase_03 AC 121 ms
40,972 KB
testcase_04 AC 120 ms
41,064 KB
testcase_05 AC 117 ms
41,252 KB
testcase_06 AC 119 ms
41,040 KB
testcase_07 AC 119 ms
41,340 KB
testcase_08 AC 105 ms
40,136 KB
testcase_09 AC 120 ms
41,588 KB
testcase_10 AC 122 ms
41,200 KB
testcase_11 AC 124 ms
41,272 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