結果

問題 No.425 ジャンケンの必勝法
ユーザー tomeruntomerun
提出日時 2016-09-22 22:48:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 78,248 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-04-28 22:24:45
合計ジャッジ時間 11,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
41,152 KB
testcase_01 AC 346 ms
41,340 KB
testcase_02 AC 351 ms
41,116 KB
testcase_03 AC 343 ms
41,004 KB
testcase_04 AC 345 ms
41,244 KB
testcase_05 AC 343 ms
41,328 KB
testcase_06 AC 332 ms
40,640 KB
testcase_07 AC 343 ms
41,216 KB
testcase_08 AC 355 ms
41,664 KB
testcase_09 AC 349 ms
41,388 KB
testcase_10 AC 351 ms
41,268 KB
testcase_11 AC 351 ms
41,192 KB
testcase_12 AC 332 ms
40,692 KB
testcase_13 AC 344 ms
41,384 KB
testcase_14 AC 341 ms
41,004 KB
testcase_15 AC 342 ms
41,144 KB
testcase_16 AC 352 ms
41,280 KB
testcase_17 AC 349 ms
41,392 KB
testcase_18 AC 351 ms
41,480 KB
testcase_19 AC 351 ms
41,420 KB
testcase_20 AC 345 ms
41,252 KB
testcase_21 AC 345 ms
41,264 KB
testcase_22 AC 349 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int P = sc.nextInt();
		int Q = sc.nextInt();
		double[][] dp = new double[2][101];
		double ans = 1.0 / 3;
		dp[0][P] = 1.0 / 3;
		int t = 0;
		for (int i = 0; i < 100000; ++i) {
			Arrays.fill(dp[1 - t], 0);
			for (int j = 0; j <= 100; ++j) {
				// use
				ans += 0.01 * j * dp[t][j] / 2;
				dp[1 - t][Math.max(0, j - Q)] += 0.01 * j * dp[t][j] / 2;

				// not use
				ans += 0.01 * (100 - j) * dp[t][j] / 3;
				dp[1 - t][Math.min(100, j + Q)] += 0.01 * (100 - j) * dp[t][j] / 3;
			}
			t = 1 - t;
		}
		System.out.printf("%.9f\n", ans);
	}
}
0