結果

問題 No.388 階段 (1)
ユーザー yamax3232yamax3232
提出日時 2017-02-09 20:31:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 3,431 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 41,292 KB
最終ジャッジ日時 2024-12-26 02:07:02
合計ジャッジ時間 6,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
39,884 KB
testcase_01 AC 126 ms
41,016 KB
testcase_02 AC 127 ms
40,916 KB
testcase_03 AC 116 ms
40,068 KB
testcase_04 AC 114 ms
40,168 KB
testcase_05 AC 126 ms
41,072 KB
testcase_06 AC 124 ms
41,064 KB
testcase_07 AC 111 ms
40,064 KB
testcase_08 AC 121 ms
40,976 KB
testcase_09 AC 120 ms
40,992 KB
testcase_10 AC 121 ms
39,988 KB
testcase_11 AC 120 ms
40,988 KB
testcase_12 AC 129 ms
41,292 KB
testcase_13 AC 122 ms
40,852 KB
testcase_14 AC 123 ms
40,232 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=1+(double)a/(double)b;
if(!(a!=0||a<b)&&b%a>0){
	time++;
}


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

	}

}
0