結果

問題 No.23 技の選択
ユーザー scachescache
提出日時 2014-11-12 03:50:59
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 611 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-06-10 02:33:47
合計ジャッジ時間 6,414 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
40,436 KB
testcase_01 AC 103 ms
41,060 KB
testcase_02 AC 108 ms
41,704 KB
testcase_03 AC 109 ms
41,272 KB
testcase_04 AC 107 ms
41,404 KB
testcase_05 AC 107 ms
41,344 KB
testcase_06 AC 105 ms
41,280 KB
testcase_07 AC 106 ms
40,948 KB
testcase_08 AC 99 ms
41,164 KB
testcase_09 AC 93 ms
39,920 KB
testcase_10 AC 94 ms
40,104 KB
testcase_11 AC 99 ms
40,136 KB
testcase_12 AC 96 ms
40,372 KB
testcase_13 AC 104 ms
40,304 KB
testcase_14 AC 106 ms
41,208 KB
testcase_15 WA -
testcase_16 AC 101 ms
40,036 KB
testcase_17 AC 106 ms
41,280 KB
testcase_18 WA -
testcase_19 AC 109 ms
41,496 KB
testcase_20 AC 105 ms
41,244 KB
testcase_21 AC 113 ms
41,656 KB
testcase_22 AC 99 ms
40,036 KB
testcase_23 AC 107 ms
41,228 KB
testcase_24 AC 105 ms
41,064 KB
testcase_25 AC 108 ms
41,536 KB
testcase_26 AC 110 ms
40,956 KB
testcase_27 AC 119 ms
41,616 KB
testcase_28 AC 110 ms
41,376 KB
testcase_29 AC 105 ms
41,012 KB
testcase_30 AC 112 ms
41,100 KB
testcase_31 AC 95 ms
40,356 KB
testcase_32 AC 108 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
public class Main {
	public static void main(String[] args) {
		Main p = new Main();
	}
	double c, prob;
 
	public Main() {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int a = sc.nextInt();
		int d = sc.nextInt();
 
		c = 1.0; prob = 0.0;
		for(int i=0;i<200;i++){
			prob += 1*c;
			c /= 3.0;
		}
 
		solve(h, a, d);
	}
 
	public void solve(int h, int a, int d) {
 
		double res = (h-1)/a+1;
		int m = (h-1)/a + 1;
		for(int i=0;i<=m;i++){
			res = Math.min(res, i+((h-i*a-1)/d+1)*prob);
		}
 
		System.out.println(res);
	}
 
}
0