結果

問題 No.1501 酔歩
ユーザー mkawa2mkawa2
提出日時 2024-01-25 18:28:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 1,205 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 127,740 KB
最終ジャッジ日時 2024-09-28 07:24:15
合計ジャッジ時間 19,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
88,320 KB
testcase_01 AC 139 ms
88,320 KB
testcase_02 AC 140 ms
88,576 KB
testcase_03 AC 140 ms
88,616 KB
testcase_04 AC 137 ms
88,448 KB
testcase_05 AC 413 ms
119,284 KB
testcase_06 AC 366 ms
112,452 KB
testcase_07 AC 398 ms
117,572 KB
testcase_08 AC 266 ms
96,000 KB
testcase_09 AC 371 ms
114,888 KB
testcase_10 AC 271 ms
98,944 KB
testcase_11 AC 356 ms
111,584 KB
testcase_12 AC 322 ms
105,472 KB
testcase_13 AC 135 ms
88,448 KB
testcase_14 AC 136 ms
88,320 KB
testcase_15 AC 135 ms
88,576 KB
testcase_16 AC 139 ms
88,644 KB
testcase_17 AC 134 ms
88,064 KB
testcase_18 AC 138 ms
88,704 KB
testcase_19 AC 136 ms
88,192 KB
testcase_20 AC 135 ms
88,576 KB
testcase_21 AC 140 ms
88,576 KB
testcase_22 AC 454 ms
126,544 KB
testcase_23 AC 453 ms
126,804 KB
testcase_24 AC 455 ms
127,188 KB
testcase_25 AC 452 ms
126,924 KB
testcase_26 AC 460 ms
126,796 KB
testcase_27 AC 460 ms
127,056 KB
testcase_28 AC 455 ms
126,540 KB
testcase_29 AC 455 ms
127,372 KB
testcase_30 AC 455 ms
126,552 KB
testcase_31 AC 454 ms
126,916 KB
testcase_32 AC 453 ms
127,060 KB
testcase_33 AC 456 ms
126,804 KB
testcase_34 AC 452 ms
126,932 KB
testcase_35 AC 457 ms
126,924 KB
testcase_36 AC 451 ms
126,928 KB
testcase_37 AC 455 ms
126,796 KB
testcase_38 AC 458 ms
126,924 KB
testcase_39 AC 471 ms
127,064 KB
testcase_40 AC 456 ms
126,656 KB
testcase_41 AC 460 ms
126,796 KB
testcase_42 AC 361 ms
126,720 KB
testcase_43 AC 136 ms
88,448 KB
testcase_44 AC 136 ms
88,208 KB
testcase_45 AC 364 ms
127,072 KB
testcase_46 AC 361 ms
127,072 KB
testcase_47 AC 366 ms
127,084 KB
testcase_48 AC 419 ms
127,104 KB
testcase_49 AC 412 ms
127,332 KB
testcase_50 AC 408 ms
127,100 KB
testcase_51 AC 414 ms
127,740 KB
testcase_52 AC 406 ms
127,356 KB
testcase_53 AC 138 ms
88,192 KB
testcase_54 AC 137 ms
88,556 KB
testcase_55 AC 139 ms
88,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from fractions import Fraction

n,k=LI()
aa=LI()

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

bb=[Fraction() for _ in range(n)]
cc=[Fraction() for _ in range(n)]
bb[1]+=1

for i in range(2,n):
    f=Fraction(-aa[i-2],aa[i])
    g=Fraction(aa[i-2]+aa[i],aa[i])
    bb[i]=f*bb[i-2]+g*bb[i-1]
    cc[i]=f*cc[i-2]+g*cc[i-1]

x=(1-cc[-1])/bb[-1]
k-=1
ans=bb[k]*x+cc[k]
if ans==0:
    print(0)
else:
    print(ans.numerator,ans.denominator,sep="/")
0