結果

問題 No.388 階段 (1)
ユーザー TokohrTokohr
提出日時 2016-10-20 16:00:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 3,228 ms
コンパイル使用メモリ 72,384 KB
実行使用メモリ 56,636 KB
最終ジャッジ日時 2023-08-14 17:28:55
合計ジャッジ時間 4,849 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
55,828 KB
testcase_01 AC 116 ms
55,372 KB
testcase_02 AC 115 ms
55,924 KB
testcase_03 AC 115 ms
56,112 KB
testcase_04 AC 116 ms
56,024 KB
testcase_05 AC 114 ms
55,716 KB
testcase_06 AC 116 ms
56,100 KB
testcase_07 AC 115 ms
55,824 KB
testcase_08 AC 116 ms
55,828 KB
testcase_09 AC 116 ms
55,848 KB
testcase_10 AC 117 ms
55,844 KB
testcase_11 AC 117 ms
55,496 KB
testcase_12 AC 118 ms
56,100 KB
testcase_13 AC 117 ms
56,636 KB
testcase_14 AC 117 ms
55,776 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