結果

問題 No.388 階段 (1)
ユーザー yamax3232yamax3232
提出日時 2017-02-09 20:22:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 3,475 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-06-07 18:04:18
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,260 KB
testcase_01 AC 138 ms
41,552 KB
testcase_02 AC 139 ms
41,304 KB
testcase_03 AC 139 ms
41,452 KB
testcase_04 AC 137 ms
41,568 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 140 ms
41,120 KB
testcase_08 AC 140 ms
41,564 KB
testcase_09 AC 138 ms
41,212 KB
testcase_10 AC 138 ms
41,488 KB
testcase_11 AC 138 ms
41,424 KB
testcase_12 AC 142 ms
41,592 KB
testcase_13 AC 141 ms
41,588 KB
testcase_14 AC 139 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Stares1 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
Scanner kb=new Scanner(System.in);
int a=kb.nextInt();
int b=kb.nextInt();
double time=(double)a/(double)b;
if(a<b){
	time--;
}

System.out.printf("%d\n", 1+(int)time);
kb.close();

	}

}
0