結果

問題 No.46 はじめのn歩
ユーザー yamax3232yamax3232
提出日時 2017-02-09 20:12:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 3,472 ms
コンパイル使用メモリ 75,472 KB
実行使用メモリ 55,840 KB
最終ジャッジ日時 2024-06-07 18:04:08
合計ジャッジ時間 5,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,228 KB
testcase_01 AC 130 ms
55,840 KB
testcase_02 AC 134 ms
54,184 KB
testcase_03 AC 133 ms
53,852 KB
testcase_04 AC 131 ms
53,844 KB
testcase_05 AC 132 ms
54,280 KB
testcase_06 AC 131 ms
53,996 KB
testcase_07 AC 134 ms
54,264 KB
testcase_08 AC 131 ms
54,104 KB
testcase_09 AC 134 ms
54,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class FirstStep {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
Scanner kb=new Scanner(System.in);
int a=kb.nextInt();
int b=kb.nextInt();
double time=(double)b/(double)a;
if((0.5<=time%2&&time%2<1)||(1.5<=time%2&&time%2<2.0)){
time++;
}
else if(b%a!=0){
time++;
}

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

	}

}
0