結果

問題 No.813 ユキちゃんの冒険
ユーザー shotoyooshotoyoo
提出日時 2021-07-02 00:44:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,760 KB
最終ジャッジ日時 2024-06-28 13:26:40
合計ジャッジ時間 15,015 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 516 ms
43,864 KB
testcase_01 WA -
testcase_02 AC 511 ms
44,120 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 541 ms
43,868 KB
testcase_06 AC 524 ms
43,868 KB
testcase_07 AC 508 ms
44,696 KB
testcase_08 AC 524 ms
43,864 KB
testcase_09 AC 514 ms
44,512 KB
testcase_10 AC 526 ms
44,536 KB
testcase_11 AC 526 ms
44,372 KB
testcase_12 AC 521 ms
43,872 KB
testcase_13 AC 514 ms
43,992 KB
testcase_14 AC 512 ms
44,004 KB
testcase_15 AC 519 ms
44,628 KB
testcase_16 AC 519 ms
44,248 KB
testcase_17 AC 507 ms
44,640 KB
testcase_18 AC 520 ms
44,540 KB
testcase_19 AC 533 ms
43,996 KB
testcase_20 AC 509 ms
44,636 KB
testcase_21 AC 520 ms
43,996 KB
testcase_22 AC 508 ms
43,860 KB
testcase_23 AC 525 ms
44,260 KB
testcase_24 WA -
testcase_25 AC 535 ms
44,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

import numpy as np
n = int(input())
p = float(input())
q = float(input())
if p==1:
    x = 1
elif q==0:
    x = p
elif n==1:
    x = p
else:
    dp0 = [0]*n
    dp1 = [0]*n
    dp0[0] = np.array((1,0), dtype=np.float64)
    dp1[0] = np.array((0,1), dtype=np.float64)
    for i in range(1,n):
        dp0[i] = (dp0[i-1]- p*dp1[i-1]) / q
        dp1[i] = q*dp1[i-1] + p*dp0[i]
        v = np.linalg.norm(dp0[i])
        dp0[i], dp1[i] = dp0[i]/v, dp1[i]/v
    a0,b0 = dp0[n-1]
    a1,b1 = dp1[n-1]
    x = (b1-b0) / (a0-a1)
print(x)
0