結果

問題 No.1501 酔歩
ユーザー そすうぽよそすうぽよ
提出日時 2021-05-07 22:45:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 137,064 KB
最終ジャッジ日時 2024-09-15 10:52:05
合計ジャッジ時間 23,820 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
88,448 KB
testcase_01 AC 148 ms
88,448 KB
testcase_02 AC 148 ms
88,064 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 490 ms
125,072 KB
testcase_06 AC 417 ms
116,192 KB
testcase_07 AC 478 ms
123,568 KB
testcase_08 AC 272 ms
94,720 KB
testcase_09 AC 440 ms
119,148 KB
testcase_10 AC 306 ms
99,328 KB
testcase_11 AC 416 ms
112,556 KB
testcase_12 AC 363 ms
107,904 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 567 ms
135,516 KB
testcase_23 AC 556 ms
135,276 KB
testcase_24 AC 560 ms
135,780 KB
testcase_25 AC 563 ms
135,520 KB
testcase_26 AC 577 ms
135,008 KB
testcase_27 AC 580 ms
135,384 KB
testcase_28 AC 575 ms
135,388 KB
testcase_29 AC 579 ms
135,304 KB
testcase_30 AC 577 ms
135,772 KB
testcase_31 AC 574 ms
135,620 KB
testcase_32 AC 577 ms
135,264 KB
testcase_33 AC 575 ms
135,000 KB
testcase_34 AC 571 ms
135,244 KB
testcase_35 AC 585 ms
135,388 KB
testcase_36 AC 586 ms
135,576 KB
testcase_37 AC 564 ms
135,640 KB
testcase_38 AC 562 ms
135,768 KB
testcase_39 AC 565 ms
135,388 KB
testcase_40 AC 567 ms
135,384 KB
testcase_41 AC 564 ms
135,420 KB
testcase_42 AC 473 ms
136,932 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 478 ms
137,064 KB
testcase_46 AC 479 ms
136,808 KB
testcase_47 AC 471 ms
137,056 KB
testcase_48 AC 509 ms
136,272 KB
testcase_49 AC 502 ms
136,168 KB
testcase_50 AC 509 ms
136,428 KB
testcase_51 AC 509 ms
136,896 KB
testcase_52 AC 516 ms
135,764 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 152 ms
88,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
n,k = map(int, input().split())
a = list(map(int, input().split()))
x1 = [Fraction(0, 1)]
x0 = [Fraction(0, 1)]
for i in range(1, n-1):
    y = Fraction(a[i-1], a[i-1] + a[i+1])
    z = Fraction(a[i+1], a[i-1] + a[i+1])
    nxd = Fraction(1) - y * x1[-1]
    x1.append(z / nxd)
    x0.append(y * x0[-1] / nxd)

p = [Fraction(0) for _i in range(n)]
p[-1] = 1

for ri in range(1, n-1):
    i = n - 1 - ri
    p[i] = x1[i] * p[i+1] + x0[i]

print(p[k-1])
0