結果

問題 No.1501 酔歩
ユーザー to-omerto-omer
提出日時 2021-05-07 23:54:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 565 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 56,868 KB
最終ジャッジ日時 2024-09-15 12:00:54
合計ジャッジ時間 72,265 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,264 KB
testcase_01 AC 34 ms
11,392 KB
testcase_02 AC 34 ms
11,264 KB
testcase_03 AC 34 ms
11,392 KB
testcase_04 AC 33 ms
11,264 KB
testcase_05 AC 1,666 ms
46,668 KB
testcase_06 AC 1,256 ms
37,968 KB
testcase_07 AC 1,585 ms
45,012 KB
testcase_08 AC 376 ms
18,944 KB
testcase_09 AC 1,392 ms
41,036 KB
testcase_10 AC 539 ms
22,896 KB
testcase_11 AC 1,218 ms
37,588 KB
testcase_12 AC 879 ms
30,204 KB
testcase_13 AC 35 ms
11,392 KB
testcase_14 AC 35 ms
11,392 KB
testcase_15 AC 34 ms
11,392 KB
testcase_16 AC 34 ms
11,392 KB
testcase_17 AC 35 ms
11,264 KB
testcase_18 AC 34 ms
11,392 KB
testcase_19 AC 35 ms
11,264 KB
testcase_20 AC 34 ms
11,392 KB
testcase_21 AC 36 ms
11,264 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 1,961 ms
51,272 KB
testcase_43 AC 34 ms
11,264 KB
testcase_44 AC 35 ms
11,264 KB
testcase_45 AC 1,911 ms
51,256 KB
testcase_46 AC 1,909 ms
51,128 KB
testcase_47 AC 1,934 ms
51,124 KB
testcase_48 AC 1,953 ms
51,308 KB
testcase_49 AC 1,966 ms
51,304 KB
testcase_50 AC 1,958 ms
51,320 KB
testcase_51 AC 1,955 ms
51,308 KB
testcase_52 AC 1,967 ms
51,296 KB
testcase_53 AC 35 ms
11,264 KB
testcase_54 AC 35 ms
11,264 KB
testcase_55 AC 35 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction as F
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}')
0