結果

問題 No.388 階段 (1)
ユーザー TokohrTokohr
提出日時 2016-10-20 16:00:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 73,496 KB
実行使用メモリ 41,248 KB
最終ジャッジ日時 2024-11-22 16:30:16
合計ジャッジ時間 5,179 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,248 KB
testcase_01 AC 122 ms
41,040 KB
testcase_02 AC 121 ms
40,688 KB
testcase_03 AC 109 ms
40,032 KB
testcase_04 AC 124 ms
41,112 KB
testcase_05 AC 124 ms
41,008 KB
testcase_06 AC 124 ms
40,956 KB
testcase_07 AC 124 ms
40,932 KB
testcase_08 AC 124 ms
40,668 KB
testcase_09 AC 124 ms
40,808 KB
testcase_10 AC 128 ms
40,988 KB
testcase_11 AC 125 ms
41,120 KB
testcase_12 AC 125 ms
40,976 KB
testcase_13 AC 127 ms
40,828 KB
testcase_14 AC 125 ms
40,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		
			System.out.println(Integer.parseInt(sc.next())/Integer.parseInt(sc.next())+1);
	}

}
0