結果

問題 No.1501 酔歩
ユーザー chocoruskchocorusk
提出日時 2021-05-09 13:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 102,548 KB
最終ジャッジ日時 2024-09-18 19:24:43
合計ジャッジ時間 18,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
88,448 KB
testcase_01 AC 117 ms
88,192 KB
testcase_02 AC 118 ms
88,432 KB
testcase_03 AC 117 ms
88,320 KB
testcase_04 AC 116 ms
88,288 KB
testcase_05 AC 378 ms
98,432 KB
testcase_06 AC 355 ms
95,744 KB
testcase_07 AC 356 ms
98,816 KB
testcase_08 AC 263 ms
91,264 KB
testcase_09 AC 361 ms
97,696 KB
testcase_10 AC 298 ms
93,056 KB
testcase_11 AC 332 ms
96,268 KB
testcase_12 AC 333 ms
93,420 KB
testcase_13 AC 122 ms
88,448 KB
testcase_14 AC 119 ms
88,320 KB
testcase_15 AC 121 ms
87,936 KB
testcase_16 AC 117 ms
88,688 KB
testcase_17 AC 119 ms
88,320 KB
testcase_18 AC 119 ms
88,320 KB
testcase_19 AC 129 ms
88,192 KB
testcase_20 AC 119 ms
88,448 KB
testcase_21 AC 119 ms
88,320 KB
testcase_22 AC 404 ms
101,852 KB
testcase_23 AC 427 ms
101,632 KB
testcase_24 AC 417 ms
102,144 KB
testcase_25 AC 420 ms
102,144 KB
testcase_26 AC 412 ms
102,016 KB
testcase_27 AC 388 ms
102,036 KB
testcase_28 AC 415 ms
101,632 KB
testcase_29 AC 412 ms
102,016 KB
testcase_30 AC 437 ms
101,760 KB
testcase_31 AC 401 ms
101,632 KB
testcase_32 AC 398 ms
101,760 KB
testcase_33 AC 398 ms
102,112 KB
testcase_34 AC 413 ms
101,632 KB
testcase_35 AC 409 ms
101,876 KB
testcase_36 AC 451 ms
101,760 KB
testcase_37 AC 395 ms
102,016 KB
testcase_38 AC 391 ms
102,016 KB
testcase_39 AC 409 ms
102,044 KB
testcase_40 AC 387 ms
102,144 KB
testcase_41 AC 386 ms
101,992 KB
testcase_42 AC 233 ms
102,548 KB
testcase_43 AC 119 ms
88,036 KB
testcase_44 AC 120 ms
88,448 KB
testcase_45 AC 228 ms
102,144 KB
testcase_46 AC 228 ms
101,992 KB
testcase_47 AC 227 ms
102,144 KB
testcase_48 AC 343 ms
101,888 KB
testcase_49 AC 367 ms
102,016 KB
testcase_50 AC 357 ms
102,144 KB
testcase_51 AC 390 ms
102,144 KB
testcase_52 AC 339 ms
101,632 KB
testcase_53 AC 117 ms
87,936 KB
testcase_54 AC 117 ms
87,936 KB
testcase_55 AC 115 ms
88,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
n, k=map(int, input().split())
a=list(map(int, input().split()))
if k==n:
    print("1/1")
    exit()
elif k==1:
    print(0)
    exit()
k-=1
q=[Fraction(0)]*n
q[1]=Fraction(1)
for i in range(2, n):
    q[i]=((a[i-2]+a[i])*q[i-1]-a[i-2]*q[i-2])/Fraction(a[i])
print(q[k]/q[n-1])
0