結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 523 ms
44,108 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 529 ms
44,364 KB
testcase_06 AC 519 ms
44,500 KB
testcase_07 AC 519 ms
44,240 KB
testcase_08 AC 525 ms
43,980 KB
testcase_09 AC 510 ms
44,240 KB
testcase_10 AC 519 ms
44,372 KB
testcase_11 AC 507 ms
43,852 KB
testcase_12 AC 523 ms
44,248 KB
testcase_13 AC 512 ms
44,120 KB
testcase_14 AC 503 ms
44,500 KB
testcase_15 AC 525 ms
44,632 KB
testcase_16 AC 526 ms
44,624 KB
testcase_17 AC 507 ms
43,984 KB
testcase_18 AC 501 ms
44,364 KB
testcase_19 AC 522 ms
43,988 KB
testcase_20 AC 510 ms
43,980 KB
testcase_21 AC 520 ms
44,240 KB
testcase_22 AC 508 ms
44,368 KB
testcase_23 AC 523 ms
43,992 KB
testcase_24 WA -
testcase_25 AC 520 ms
43,992 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
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