結果

問題 No.425 ジャンケンの必勝法
ユーザー GrenacheGrenache
提出日時 2016-09-22 23:41:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 3,711 ms
コンパイル使用メモリ 77,924 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-04-28 22:41:15
合計ジャッジ時間 7,870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,776 KB
testcase_01 AC 143 ms
41,492 KB
testcase_02 AC 148 ms
41,200 KB
testcase_03 AC 145 ms
41,120 KB
testcase_04 AC 145 ms
41,704 KB
testcase_05 AC 141 ms
41,032 KB
testcase_06 AC 144 ms
41,288 KB
testcase_07 AC 138 ms
40,896 KB
testcase_08 AC 132 ms
41,028 KB
testcase_09 AC 140 ms
41,536 KB
testcase_10 AC 140 ms
41,532 KB
testcase_11 AC 138 ms
41,652 KB
testcase_12 AC 135 ms
40,916 KB
testcase_13 AC 139 ms
41,172 KB
testcase_14 AC 122 ms
40,320 KB
testcase_15 AC 131 ms
41,500 KB
testcase_16 AC 135 ms
40,992 KB
testcase_17 AC 138 ms
41,132 KB
testcase_18 AC 136 ms
41,536 KB
testcase_19 AC 120 ms
40,116 KB
testcase_20 AC 136 ms
41,108 KB
testcase_21 AC 133 ms
41,388 KB
testcase_22 AC 136 ms
41,204 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