結果

問題 No.388 階段 (1)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-08 21:46:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 73,964 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-09-25 11:11:58
合計ジャッジ時間 4,678 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,084 KB
testcase_01 AC 116 ms
52,944 KB
testcase_02 AC 122 ms
53,876 KB
testcase_03 AC 124 ms
54,048 KB
testcase_04 AC 119 ms
54,120 KB
testcase_05 AC 116 ms
52,660 KB
testcase_06 AC 122 ms
54,016 KB
testcase_07 AC 125 ms
53,864 KB
testcase_08 AC 126 ms
54,056 KB
testcase_09 AC 122 ms
53,928 KB
testcase_10 AC 113 ms
52,868 KB
testcase_11 AC 126 ms
54,304 KB
testcase_12 AC 126 ms
54,120 KB
testcase_13 AC 126 ms
54,272 KB
testcase_14 AC 115 ms
52,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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