結果

問題 No.1501 酔歩
ユーザー to-omerto-omer
提出日時 2021-05-07 23:55:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 142,688 KB
最終ジャッジ日時 2024-09-15 12:03:09
合計ジャッジ時間 27,883 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
88,576 KB
testcase_01 AC 140 ms
88,652 KB
testcase_02 AC 139 ms
88,220 KB
testcase_03 AC 137 ms
88,452 KB
testcase_04 AC 134 ms
88,192 KB
testcase_05 AC 660 ms
131,600 KB
testcase_06 AC 483 ms
121,440 KB
testcase_07 AC 543 ms
130,240 KB
testcase_08 AC 296 ms
96,768 KB
testcase_09 AC 521 ms
124,232 KB
testcase_10 AC 334 ms
101,248 KB
testcase_11 AC 475 ms
118,964 KB
testcase_12 AC 405 ms
110,848 KB
testcase_13 AC 135 ms
88,320 KB
testcase_14 AC 136 ms
88,448 KB
testcase_15 AC 134 ms
88,368 KB
testcase_16 AC 138 ms
88,320 KB
testcase_17 AC 133 ms
88,448 KB
testcase_18 AC 133 ms
88,320 KB
testcase_19 AC 135 ms
88,092 KB
testcase_20 AC 133 ms
88,448 KB
testcase_21 AC 137 ms
88,192 KB
testcase_22 AC 669 ms
142,308 KB
testcase_23 AC 674 ms
142,552 KB
testcase_24 AC 668 ms
142,308 KB
testcase_25 AC 678 ms
142,300 KB
testcase_26 AC 677 ms
142,556 KB
testcase_27 AC 685 ms
142,552 KB
testcase_28 AC 682 ms
142,176 KB
testcase_29 AC 683 ms
142,316 KB
testcase_30 AC 680 ms
142,176 KB
testcase_31 AC 677 ms
142,300 KB
testcase_32 AC 665 ms
142,172 KB
testcase_33 AC 667 ms
142,560 KB
testcase_34 AC 664 ms
142,556 KB
testcase_35 AC 666 ms
142,288 KB
testcase_36 AC 666 ms
142,300 KB
testcase_37 AC 662 ms
142,308 KB
testcase_38 AC 726 ms
142,428 KB
testcase_39 AC 672 ms
142,308 KB
testcase_40 AC 673 ms
142,308 KB
testcase_41 AC 656 ms
142,060 KB
testcase_42 AC 591 ms
142,304 KB
testcase_43 AC 139 ms
88,096 KB
testcase_44 AC 138 ms
88,448 KB
testcase_45 AC 583 ms
142,424 KB
testcase_46 AC 586 ms
142,256 KB
testcase_47 AC 598 ms
142,368 KB
testcase_48 AC 618 ms
142,420 KB
testcase_49 AC 615 ms
142,688 KB
testcase_50 AC 607 ms
141,916 KB
testcase_51 AC 632 ms
142,516 KB
testcase_52 AC 640 ms
142,312 KB
testcase_53 AC 143 ms
88,264 KB
testcase_54 AC 140 ms
88,448 KB
testcase_55 AC 138 ms
88,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction as F
def main():
    N,K=map(int, input().split())
    *A,=map(F, input().split())
    if K == N:
        print('1/1')
    elif K == 1:
        print('0')
    else:
        D=[(F(0),F(0))]
        for i in range(1,N-1):
            b = A[i-1]/(A[i-1]+A[i+1])
            a = A[i+1]/(A[i-1]+A[i+1])
            bb, aa = D[-1]
            de = F(1) - b*aa
            nb = b * bb / de
            na = a / de
            D.append((nb, na))
        X = [F(0)] * N
        X[N-1] = F(1)
        for i in range(N-2, 0, -1):
            b, a = D[i]
            X[i] = b + a * X[i+1]
        print(f'{X[K-1].numerator}/{X[K-1].denominator}')

if __name__ == '__main__':
    main()
0