結果

問題 No.813 ユキちゃんの冒険
ユーザー daut-dlangdaut-dlang
提出日時 2019-04-12 23:19:39
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,690 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 157,220 KB
実行使用メモリ 4,564 KB
最終ジャッジ日時 2023-09-04 00:37:09
合計ジャッジ時間 3,482 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,380 KB
testcase_03 WA -
testcase_04 AC 1 ms
4,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
4,380 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
4,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
4,376 KB
testcase_17 WA -
testcase_18 AC 1 ms
4,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1 ms
4,376 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.conv, std.functional, std.string;
import std.algorithm, std.array, std.container, std.range, std.typecons;
import std.numeric, std.math, std.random;
import core.bitop;

string FMT_F = "%.10f";

static string[] s_rd;
T RD(T = long)() { while(!s_rd.length) s_rd = readln.chomp.split; string res = s_rd[0]; s_rd.popFront; return res.to!T; }
string RDR()() { return readln.chomp; }
T[] ARR(T = long)(in string str, T fix = 0) { auto r = str.split.to!(T[]); r[] += fix; return r; }
size_t[] MAKE_IDX(alias less = "a < b", Range)(Range range) { auto idx = new size_t[](range.length); makeIndex!(less)(range, idx); return idx;}
size_t MIN_POS(alias less = "a < b", Range)(Range range) { auto r = minPos!(less)(range); return range.length - r.length; }

bool inside(T)(T x, T b, T e) { return x >= b && x < e; }
bool minimize(T)(ref T x, T y) { if (x > y) { x = y; return true; } else { return false; } }
bool maximize(T)(ref T x, T y) { if (x < y) { x = y; return true; } else { return false; } }

long mod = 10^^9 + 7;
void moda(ref long x, long y) { x = (x + y) % mod; }
void mods(ref long x, long y) { x = ((x + mod) - (y % mod)) % mod; }
void modm(ref long x, long y) { x = (x * y) % mod; }

void main()
{	
	auto N = RD;
	auto p = RD!double;
	auto q = RD!double;

	double ans = 0.0;
	auto dp = new double[2][](N+1);
	dp[0][0] = 1.0;
	dp[0][1] = 1.0;
	foreach (i; 0..N)
	{
		dp[i+1][0] = dp[i][0] * q;
		dp[i+1][1] = dp[i][0] * p;
		ans += dp[i+1][1] * dp[i][0];
		if (i > 0)
		{
			ans += dp[i+1][1]^^2 * dp[i][1] * dp[i][0];
		}
		if (i > 1)
		{
			ans += dp[i+1][1] * dp[i][0] * dp[i][1] * dp[i-1][1];
		}
	}
	
	writefln(FMT_F, ans);
	stdout.flush();
	debug readln();
}
0