結果

問題 No.1501 酔歩
ユーザー そすうぽよそすうぽよ
提出日時 2021-05-07 22:48:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 988 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 136,984 KB
最終ジャッジ日時 2024-09-15 10:55:02
合計ジャッジ時間 24,917 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
88,320 KB
testcase_01 AC 150 ms
88,192 KB
testcase_02 AC 150 ms
88,448 KB
testcase_03 AC 151 ms
88,064 KB
testcase_04 AC 149 ms
88,320 KB
testcase_05 AC 521 ms
125,112 KB
testcase_06 AC 418 ms
116,456 KB
testcase_07 AC 488 ms
123,748 KB
testcase_08 AC 275 ms
94,848 KB
testcase_09 AC 440 ms
119,136 KB
testcase_10 AC 301 ms
99,200 KB
testcase_11 AC 414 ms
112,832 KB
testcase_12 AC 358 ms
107,648 KB
testcase_13 AC 149 ms
88,320 KB
testcase_14 AC 149 ms
88,064 KB
testcase_15 AC 149 ms
88,064 KB
testcase_16 AC 151 ms
88,448 KB
testcase_17 AC 149 ms
88,448 KB
testcase_18 AC 150 ms
88,192 KB
testcase_19 AC 151 ms
88,320 KB
testcase_20 AC 149 ms
88,576 KB
testcase_21 AC 149 ms
88,064 KB
testcase_22 AC 559 ms
135,316 KB
testcase_23 AC 561 ms
135,256 KB
testcase_24 AC 569 ms
135,984 KB
testcase_25 AC 559 ms
134,976 KB
testcase_26 AC 566 ms
135,516 KB
testcase_27 AC 566 ms
135,260 KB
testcase_28 AC 570 ms
135,012 KB
testcase_29 AC 578 ms
135,444 KB
testcase_30 AC 579 ms
135,236 KB
testcase_31 AC 578 ms
135,436 KB
testcase_32 AC 584 ms
135,688 KB
testcase_33 AC 585 ms
135,568 KB
testcase_34 AC 580 ms
135,304 KB
testcase_35 AC 581 ms
135,304 KB
testcase_36 AC 584 ms
135,264 KB
testcase_37 AC 578 ms
135,256 KB
testcase_38 AC 578 ms
135,764 KB
testcase_39 AC 580 ms
135,308 KB
testcase_40 AC 575 ms
135,392 KB
testcase_41 AC 578 ms
135,264 KB
testcase_42 AC 500 ms
136,804 KB
testcase_43 AC 149 ms
88,448 KB
testcase_44 AC 150 ms
88,448 KB
testcase_45 AC 481 ms
136,412 KB
testcase_46 AC 488 ms
136,732 KB
testcase_47 AC 488 ms
136,984 KB
testcase_48 AC 515 ms
136,160 KB
testcase_49 AC 504 ms
136,272 KB
testcase_50 AC 514 ms
136,164 KB
testcase_51 AC 505 ms
136,904 KB
testcase_52 AC 511 ms
136,144 KB
testcase_53 AC 149 ms
88,064 KB
testcase_54 AC 148 ms
88,448 KB
testcase_55 AC 146 ms
88,320 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]

if p[k-1] == 1:
    print("1/1")
else:
    print(p[k-1])
0