結果

問題 No.1501 酔歩
ユーザー tamatotamato
提出日時 2021-05-07 23:17:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 874 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-09-15 11:23:00
合計ジャッジ時間 7,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 148 ms
86,400 KB
testcase_06 AC 127 ms
83,584 KB
testcase_07 AC 146 ms
86,272 KB
testcase_08 AC 71 ms
68,992 KB
testcase_09 AC 141 ms
84,992 KB
testcase_10 AC 88 ms
76,672 KB
testcase_11 AC 130 ms
83,456 KB
testcase_12 AC 82 ms
74,880 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 156 ms
89,728 KB
testcase_23 AC 172 ms
89,856 KB
testcase_24 AC 158 ms
89,856 KB
testcase_25 AC 145 ms
89,856 KB
testcase_26 AC 124 ms
89,856 KB
testcase_27 AC 152 ms
89,856 KB
testcase_28 AC 182 ms
89,728 KB
testcase_29 AC 130 ms
89,856 KB
testcase_30 AC 168 ms
89,856 KB
testcase_31 AC 129 ms
89,856 KB
testcase_32 AC 138 ms
89,728 KB
testcase_33 AC 174 ms
89,984 KB
testcase_34 AC 159 ms
89,856 KB
testcase_35 AC 147 ms
89,856 KB
testcase_36 AC 161 ms
89,856 KB
testcase_37 AC 124 ms
89,728 KB
testcase_38 AC 136 ms
89,856 KB
testcase_39 AC 186 ms
89,984 KB
testcase_40 AC 140 ms
89,856 KB
testcase_41 AC 173 ms
90,112 KB
testcase_42 AC 90 ms
81,664 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 96 ms
81,280 KB
testcase_46 AC 99 ms
80,896 KB
testcase_47 AC 88 ms
81,024 KB
testcase_48 AC 95 ms
81,664 KB
testcase_49 AC 103 ms
81,280 KB
testcase_50 AC 94 ms
81,536 KB
testcase_51 AC 94 ms
81,280 KB
testcase_52 AC 94 ms
81,280 KB
testcase_53 WA -
testcase_54 AC 41 ms
51,968 KB
testcase_55 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from math import gcd
    input = sys.stdin.readline

    N, K = map(int, input().split())
    A = list(map(int, input().split()))
    
    if N == 1:
        print("1/1")

    if K == 1:
        print(0)
        exit()

    if K == N:
        print("1/1")
        exit()

    upper = [0] * N
    lower = [1] * N
    for i in range(1, N-1):
        a = A[i-1]
        b = A[i+1]
        upper[i] = lower[i-1] * b
        lower[i] = lower[i-1] * (a+b) - a * upper[i-1]
        g = gcd(upper[i], lower[i])
        upper[i] //= g
        lower[i] //= g

    u = l = 1
    for i in range(K-1, N-1):
        u *= upper[i]
        l *= lower[i]
        g = gcd(u, l)
        u //= g
        l //= g
    if u == 0:
        print(0)
    else:
        print(str(u) + "/" + str(l))


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