結果

問題 No.425 ジャンケンの必勝法
ユーザー hermione17hermione17
提出日時 2016-09-22 22:57:54
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 722 bytes
コンパイル時間 3,761 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-04-28 22:32:34
合計ジャッジ時間 7,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
40,908 KB
testcase_01 AC 141 ms
41,228 KB
testcase_02 AC 140 ms
41,440 KB
testcase_03 AC 140 ms
41,404 KB
testcase_04 AC 143 ms
41,012 KB
testcase_05 AC 139 ms
41,140 KB
testcase_06 AC 129 ms
39,972 KB
testcase_07 AC 137 ms
41,260 KB
testcase_08 AC 136 ms
40,896 KB
testcase_09 AC 134 ms
41,088 KB
testcase_10 AC 137 ms
41,112 KB
testcase_11 AC 116 ms
40,020 KB
testcase_12 AC 137 ms
41,016 KB
testcase_13 AC 139 ms
41,004 KB
testcase_14 AC 130 ms
40,772 KB
testcase_15 AC 136 ms
41,208 KB
testcase_16 AC 141 ms
41,332 KB
testcase_17 AC 138 ms
41,184 KB
testcase_18 AC 134 ms
41,008 KB
testcase_19 AC 135 ms
41,048 KB
testcase_20 AC 131 ms
41,256 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y425 {
	int p0;
	int q;
	
	Y425() throws Exception {
		Scanner in = new Scanner(System.in);
		PrintStream out = new PrintStream(System.out);
		
		p0 = in.nextInt();
		q = in.nextInt();
		
		double ans = 1.0 / 3;
		
		ans += dfs(p0, 1.0 / 3);
		
		out.println(ans);
		out.flush();
	}

	double dfs(int p, double s) {
		if (s < 1e-9) return s / 2.0;
		
		double ans = 0;
		ans += p / 100.0 * 0.5 * s;
		ans += dfs(Math.max(0, p - q), p / 100.0 * s * 0.5);
		ans += (100 - p) / 100.0 / 3.0 * s;
		ans += dfs(Math.min(100, p + q), (100 - p) / 100.0 * s / 3.0);
		return ans;
	}
	
	public static void main(String argv[]) throws Exception {
		new Y425();
	}
}
0