結果

問題 No.1501 酔歩
ユーザー chineristACchineristAC
提出日時 2021-05-08 02:19:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,014 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 97,536 KB
最終ジャッジ日時 2024-09-15 16:37:15
合計ジャッジ時間 7,932 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,936 KB
testcase_01 AC 47 ms
55,808 KB
testcase_02 AC 46 ms
55,936 KB
testcase_03 AC 47 ms
56,064 KB
testcase_04 AC 48 ms
56,064 KB
testcase_05 AC 112 ms
93,112 KB
testcase_06 AC 100 ms
90,240 KB
testcase_07 AC 106 ms
93,136 KB
testcase_08 AC 63 ms
70,784 KB
testcase_09 AC 100 ms
91,220 KB
testcase_10 AC 68 ms
73,216 KB
testcase_11 AC 97 ms
89,868 KB
testcase_12 AC 76 ms
77,824 KB
testcase_13 AC 49 ms
55,808 KB
testcase_14 AC 48 ms
55,808 KB
testcase_15 AC 48 ms
55,680 KB
testcase_16 AC 47 ms
55,808 KB
testcase_17 AC 49 ms
55,936 KB
testcase_18 AC 48 ms
55,680 KB
testcase_19 AC 47 ms
56,192 KB
testcase_20 AC 48 ms
56,064 KB
testcase_21 AC 48 ms
55,680 KB
testcase_22 AC 118 ms
97,152 KB
testcase_23 AC 119 ms
97,408 KB
testcase_24 AC 118 ms
97,152 KB
testcase_25 AC 120 ms
97,408 KB
testcase_26 AC 119 ms
97,152 KB
testcase_27 AC 124 ms
97,536 KB
testcase_28 AC 120 ms
97,232 KB
testcase_29 AC 124 ms
97,408 KB
testcase_30 AC 119 ms
97,352 KB
testcase_31 AC 123 ms
97,388 KB
testcase_32 AC 125 ms
97,236 KB
testcase_33 AC 126 ms
97,280 KB
testcase_34 AC 117 ms
97,536 KB
testcase_35 AC 116 ms
97,280 KB
testcase_36 AC 118 ms
97,364 KB
testcase_37 AC 117 ms
97,280 KB
testcase_38 AC 125 ms
97,364 KB
testcase_39 AC 128 ms
97,280 KB
testcase_40 AC 117 ms
97,396 KB
testcase_41 AC 132 ms
97,152 KB
testcase_42 AC 104 ms
97,152 KB
testcase_43 AC 48 ms
55,936 KB
testcase_44 AC 47 ms
56,192 KB
testcase_45 AC 105 ms
97,408 KB
testcase_46 AC 105 ms
97,408 KB
testcase_47 AC 109 ms
97,280 KB
testcase_48 AC 110 ms
97,408 KB
testcase_49 AC 112 ms
97,152 KB
testcase_50 AC 110 ms
97,408 KB
testcase_51 AC 114 ms
97,152 KB
testcase_52 AC 112 ms
97,280 KB
testcase_53 AC 48 ms
56,192 KB
testcase_54 AC 48 ms
56,064 KB
testcase_55 AC 47 ms
55,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.buffer.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,K = mi()
A = li()
n = N

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

dp = [[(0,1),(0,1)] for i in range(n)]
dp[1][1] = (1,1)
for i in range(2,n):
    p,q = A[i-2],A[i-2]+A[i]

    a,b = dp[i-1][1]
    c,d = dp[i-2][1]
    c,d = c*p,d*q

    a,b,c,d = a*d,b*d,c*b,b*d
    p,q = A[i-2],A[i-2]+A[i]

    e,f = (a-c)*q,(q-p)*b
    g = gcd(e,f)
    dp[i][1] = (e//g,f//g)

a,b = dp[n-1][0]
c,d = dp[n-1][1]

"""
1 = a/b + c/d * dp[1]
dp[1] = -a*d/b*c
"""

e,f = (b-a)*d,b*c
g = gcd(e,f)
e //= g
f //= g

a,b = dp[K-1][0]
c,d = dp[K-1][1]

"""
p/q = a/b + c/d * e/f
    = adf/bdf + bce/bdf
    = (a*d*f+b*c*e)/(b*d*f)
"""

p,q = a*d*f+b*c*e,b*d*f
if p<0:
    p,q = -p,-q
g = gcd(p,q)
if p:
    print("{}/{}".format(p//g,q//g))
else:
    print(0)
0