結果

問題 No.1501 酔歩
ユーザー tamatotamato
提出日時 2021-05-07 21:43:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 783 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-09-15 09:33:44
合計ジャッジ時間 7,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 141 ms
86,656 KB
testcase_06 AC 117 ms
83,456 KB
testcase_07 AC 137 ms
86,528 KB
testcase_08 AC 63 ms
69,120 KB
testcase_09 AC 136 ms
84,864 KB
testcase_10 AC 77 ms
76,672 KB
testcase_11 AC 120 ms
83,584 KB
testcase_12 AC 74 ms
75,008 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 144 ms
89,728 KB
testcase_23 AC 162 ms
89,856 KB
testcase_24 AC 148 ms
89,856 KB
testcase_25 AC 135 ms
90,240 KB
testcase_26 AC 115 ms
89,984 KB
testcase_27 AC 143 ms
90,092 KB
testcase_28 AC 174 ms
89,856 KB
testcase_29 AC 122 ms
89,600 KB
testcase_30 AC 158 ms
89,856 KB
testcase_31 AC 120 ms
90,020 KB
testcase_32 AC 128 ms
89,728 KB
testcase_33 AC 166 ms
90,112 KB
testcase_34 AC 151 ms
89,856 KB
testcase_35 AC 138 ms
89,816 KB
testcase_36 AC 152 ms
89,728 KB
testcase_37 AC 114 ms
89,968 KB
testcase_38 AC 125 ms
89,728 KB
testcase_39 AC 177 ms
90,132 KB
testcase_40 AC 131 ms
89,728 KB
testcase_41 AC 164 ms
89,728 KB
testcase_42 AC 85 ms
81,792 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 91 ms
81,408 KB
testcase_46 AC 92 ms
81,024 KB
testcase_47 AC 82 ms
80,768 KB
testcase_48 AC 88 ms
81,560 KB
testcase_49 AC 98 ms
81,280 KB
testcase_50 AC 90 ms
81,536 KB
testcase_51 AC 89 ms
81,792 KB
testcase_52 AC 88 ms
81,280 KB
testcase_53 WA -
testcase_54 WA -
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 K == 1:
        print(0)
        exit()

    if K == N:
        print(0)
        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
    print(str(u) + "/" + str(l))


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