結果

問題 No.388 階段 (1)
ユーザー TokohrTokohr
提出日時 2016-10-20 16:00:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 41,204 KB
最終ジャッジ日時 2024-05-02 05:29:48
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,140 KB
testcase_01 AC 101 ms
40,136 KB
testcase_02 AC 91 ms
40,004 KB
testcase_03 AC 102 ms
41,080 KB
testcase_04 AC 90 ms
39,424 KB
testcase_05 AC 103 ms
40,892 KB
testcase_06 AC 105 ms
41,028 KB
testcase_07 AC 102 ms
40,804 KB
testcase_08 AC 88 ms
39,624 KB
testcase_09 AC 106 ms
40,812 KB
testcase_10 AC 93 ms
39,788 KB
testcase_11 AC 96 ms
40,568 KB
testcase_12 AC 106 ms
41,204 KB
testcase_13 AC 97 ms
40,332 KB
testcase_14 AC 101 ms
40,064 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