結果

問題 No.425 ジャンケンの必勝法
ユーザー GrenacheGrenache
提出日時 2016-09-22 23:41:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 3,440 ms
コンパイル使用メモリ 77,836 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-11-17 19:41:43
合計ジャッジ時間 7,044 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,904 KB
testcase_01 AC 125 ms
41,616 KB
testcase_02 AC 113 ms
40,932 KB
testcase_03 AC 111 ms
40,052 KB
testcase_04 AC 126 ms
41,644 KB
testcase_05 AC 122 ms
41,236 KB
testcase_06 AC 110 ms
41,160 KB
testcase_07 AC 120 ms
41,408 KB
testcase_08 AC 126 ms
41,584 KB
testcase_09 AC 128 ms
41,384 KB
testcase_10 AC 129 ms
41,172 KB
testcase_11 AC 124 ms
41,572 KB
testcase_12 AC 120 ms
40,088 KB
testcase_13 AC 117 ms
40,156 KB
testcase_14 AC 125 ms
41,320 KB
testcase_15 AC 124 ms
41,112 KB
testcase_16 AC 123 ms
41,228 KB
testcase_17 AC 106 ms
41,344 KB
testcase_18 AC 127 ms
41,624 KB
testcase_19 AC 126 ms
41,468 KB
testcase_20 AC 115 ms
40,004 KB
testcase_21 AC 131 ms
41,488 KB
testcase_22 AC 118 ms
40,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder425 {

	private static Scanner sc;
	private static Printer pr;

//	private static int p;
	private static int q;

	private static void solve() {
		int p = sc.nextInt();
		q = sc.nextInt();

		double ret = (double)1 / 3;

		pr.printf("%.7f\n", ret + f(p, (double)1 / 3));
	}

	private static double f(int p, double d) {
		double EPS = 1.e-10;
//		pr.println(d);
		if (d < EPS) {
			return 0;
		}
		double ret = d * p / 100 / 2 + d * (100 - p) / 100 / 3;
		ret += f(Math.max(0, p - q), d * p / 100 / 2);
		ret += f(Math.min(100, p + q), d * (100 - p) / 100 / 3);

		return ret;
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0