結果

問題 No.1501 酔歩
ユーザー convexineqconvexineq
提出日時 2021-05-07 22:08:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 117,232 KB
最終ジャッジ日時 2024-09-15 10:04:32
合計ジャッジ時間 19,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
88,416 KB
testcase_01 AC 138 ms
88,192 KB
testcase_02 AC 138 ms
88,016 KB
testcase_03 AC 139 ms
88,448 KB
testcase_04 WA -
testcase_05 AC 398 ms
110,248 KB
testcase_06 AC 360 ms
104,576 KB
testcase_07 AC 382 ms
109,600 KB
testcase_08 AC 268 ms
92,672 KB
testcase_09 AC 378 ms
107,264 KB
testcase_10 AC 308 ms
94,816 KB
testcase_11 AC 343 ms
104,036 KB
testcase_12 AC 382 ms
99,200 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 439 ms
117,004 KB
testcase_23 AC 467 ms
116,992 KB
testcase_24 AC 475 ms
116,608 KB
testcase_25 AC 466 ms
116,620 KB
testcase_26 AC 446 ms
116,864 KB
testcase_27 AC 409 ms
116,984 KB
testcase_28 AC 438 ms
116,624 KB
testcase_29 AC 423 ms
116,736 KB
testcase_30 AC 468 ms
116,480 KB
testcase_31 AC 414 ms
117,120 KB
testcase_32 AC 410 ms
116,736 KB
testcase_33 AC 409 ms
116,480 KB
testcase_34 AC 456 ms
116,784 KB
testcase_35 AC 433 ms
116,480 KB
testcase_36 AC 462 ms
116,864 KB
testcase_37 AC 423 ms
116,864 KB
testcase_38 AC 422 ms
116,832 KB
testcase_39 AC 432 ms
116,864 KB
testcase_40 AC 428 ms
116,992 KB
testcase_41 AC 410 ms
116,736 KB
testcase_42 AC 253 ms
117,232 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 249 ms
116,736 KB
testcase_46 AC 249 ms
116,568 KB
testcase_47 AC 250 ms
116,588 KB
testcase_48 AC 396 ms
116,736 KB
testcase_49 AC 409 ms
116,992 KB
testcase_50 AC 406 ms
116,864 KB
testcase_51 AC 422 ms
116,864 KB
testcase_52 AC 409 ms
116,864 KB
testcase_53 WA -
testcase_54 AC 136 ms
88,044 KB
testcase_55 AC 136 ms
88,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction as F
n,k = map(int,input().split())
*a, = map(int,input().split())
if k==1:
    print(0)
    exit()
a = [F(0)]+[F(a[i-1],a[i-1]+a[i+1]) for i in range(1,n-1)]+[F(0)]
r = [F(0)]*n
r[1] = F(1)
for i in range(2,n):
    r[i] = (r[i-1]-r[i-2]*a[i-1])/(F(1)-a[i-1])
ans = r[k-1]/r[-1]
print(f"{ans.numerator}/{ans.denominator}")
0