結果

問題 No.388 階段 (1)
ユーザー nesaianesaia
提出日時 2017-04-17 16:03:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 3,225 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-07-19 05:24:58
合計ジャッジ時間 5,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,284 KB
testcase_01 AC 129 ms
41,112 KB
testcase_02 AC 127 ms
40,872 KB
testcase_03 AC 111 ms
40,140 KB
testcase_04 AC 111 ms
40,188 KB
testcase_05 AC 107 ms
39,968 KB
testcase_06 AC 127 ms
41,008 KB
testcase_07 AC 117 ms
41,152 KB
testcase_08 AC 123 ms
40,936 KB
testcase_09 AC 118 ms
41,112 KB
testcase_10 AC 123 ms
41,256 KB
testcase_11 AC 126 ms
41,032 KB
testcase_12 AC 123 ms
40,940 KB
testcase_13 AC 128 ms
41,172 KB
testcase_14 AC 125 ms
40,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.388 階段 (1)
//http://yukicoder.me/problems/no/388
//2017 0417 1545

package no388;

import java.util.Scanner;

public class No388{
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int step;
		int floar;
		
		step = scan.nextInt();
		floar = scan.nextInt();

		scan.close();

		System.out.println(step / floar + 1);
		
	}

}
0