結果

問題 No.1501 酔歩
ユーザー convexineqconvexineq
提出日時 2021-05-07 22:22:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 117,376 KB
最終ジャッジ日時 2024-09-15 10:26:12
合計ジャッジ時間 20,088 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
88,704 KB
testcase_01 AC 150 ms
88,448 KB
testcase_02 AC 151 ms
88,576 KB
testcase_03 AC 151 ms
88,576 KB
testcase_04 AC 150 ms
88,576 KB
testcase_05 AC 409 ms
110,720 KB
testcase_06 AC 371 ms
104,832 KB
testcase_07 AC 400 ms
109,952 KB
testcase_08 AC 283 ms
92,672 KB
testcase_09 AC 388 ms
107,136 KB
testcase_10 AC 321 ms
94,976 KB
testcase_11 AC 350 ms
104,704 KB
testcase_12 AC 379 ms
99,584 KB
testcase_13 AC 150 ms
88,576 KB
testcase_14 AC 152 ms
88,576 KB
testcase_15 AC 150 ms
88,576 KB
testcase_16 AC 148 ms
88,576 KB
testcase_17 AC 149 ms
88,576 KB
testcase_18 AC 150 ms
88,192 KB
testcase_19 AC 151 ms
88,448 KB
testcase_20 AC 152 ms
88,448 KB
testcase_21 AC 150 ms
88,448 KB
testcase_22 AC 454 ms
117,120 KB
testcase_23 AC 493 ms
117,120 KB
testcase_24 AC 490 ms
116,736 KB
testcase_25 AC 484 ms
116,864 KB
testcase_26 AC 455 ms
116,864 KB
testcase_27 AC 423 ms
116,992 KB
testcase_28 AC 454 ms
116,864 KB
testcase_29 AC 445 ms
117,120 KB
testcase_30 AC 487 ms
116,864 KB
testcase_31 AC 427 ms
116,992 KB
testcase_32 AC 425 ms
116,992 KB
testcase_33 AC 416 ms
117,120 KB
testcase_34 AC 477 ms
117,120 KB
testcase_35 AC 449 ms
116,736 KB
testcase_36 AC 474 ms
116,992 KB
testcase_37 AC 434 ms
117,120 KB
testcase_38 AC 432 ms
116,864 KB
testcase_39 AC 446 ms
116,864 KB
testcase_40 AC 448 ms
116,736 KB
testcase_41 AC 430 ms
116,992 KB
testcase_42 AC 266 ms
117,376 KB
testcase_43 AC 153 ms
88,704 KB
testcase_44 AC 152 ms
88,192 KB
testcase_45 AC 263 ms
117,120 KB
testcase_46 AC 266 ms
116,992 KB
testcase_47 AC 268 ms
116,992 KB
testcase_48 AC 415 ms
116,864 KB
testcase_49 AC 424 ms
116,736 KB
testcase_50 AC 423 ms
116,992 KB
testcase_51 AC 437 ms
117,120 KB
testcase_52 AC 418 ms
116,992 KB
testcase_53 AC 150 ms
88,320 KB
testcase_54 AC 150 ms
88,448 KB
testcase_55 AC 151 ms
88,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction as F
n,k = map(int,input().split())
*a, = map(int,input().split())
if k==1:
    if n==1: print("1/1")
    else: 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])
# 1 = a+b, r[k-1] = r[-1]b
ans = r[k-1]/r[-1]
print(f"{ans.numerator}/{ans.denominator}")
0