結果

問題 No.1501 酔歩
ユーザー kozykozy
提出日時 2021-05-07 22:19:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 479 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,876 KB
最終ジャッジ日時 2024-09-15 10:20:42
合計ジャッジ時間 13,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 RE -
testcase_05 AC 265 ms
21,828 KB
testcase_06 AC 213 ms
19,032 KB
testcase_07 AC 258 ms
21,264 KB
testcase_08 AC 85 ms
13,184 KB
testcase_09 AC 228 ms
20,132 KB
testcase_10 AC 108 ms
14,336 KB
testcase_11 AC 206 ms
19,112 KB
testcase_12 AC 156 ms
16,756 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 334 ms
24,748 KB
testcase_23 AC 331 ms
24,868 KB
testcase_24 AC 336 ms
24,744 KB
testcase_25 AC 334 ms
24,756 KB
testcase_26 AC 336 ms
24,752 KB
testcase_27 AC 338 ms
24,740 KB
testcase_28 AC 333 ms
24,744 KB
testcase_29 AC 339 ms
24,732 KB
testcase_30 AC 335 ms
24,868 KB
testcase_31 AC 335 ms
24,864 KB
testcase_32 AC 338 ms
24,744 KB
testcase_33 AC 335 ms
24,744 KB
testcase_34 AC 331 ms
24,876 KB
testcase_35 AC 333 ms
24,752 KB
testcase_36 AC 330 ms
24,756 KB
testcase_37 AC 331 ms
24,736 KB
testcase_38 AC 336 ms
24,744 KB
testcase_39 AC 338 ms
24,752 KB
testcase_40 AC 326 ms
24,744 KB
testcase_41 AC 341 ms
24,740 KB
testcase_42 AC 255 ms
21,584 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 AC 251 ms
21,728 KB
testcase_46 AC 250 ms
21,684 KB
testcase_47 AC 252 ms
21,604 KB
testcase_48 AC 269 ms
21,796 KB
testcase_49 AC 264 ms
21,656 KB
testcase_50 AC 263 ms
21,672 KB
testcase_51 AC 279 ms
21,864 KB
testcase_52 AC 262 ms
21,732 KB
testcase_53 RE -
testcase_54 AC 31 ms
10,624 KB
testcase_55 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def plus(a,b,c,d):
  x,y=(a*d+b*c),b*d
  g=math.gcd(x,y)
  if x<=0 and y<=0:
      x,y=-x,-y
  return x//g,y//g
N,K=map(int,input().split())
A=list(map(int,input().split()))
L=[0]*N
L[0]=[0,1]
L[1]=[1,1]
for i in range(1,N-1):
  a=A[i-1]
  b=A[i+1]
  n1,m1=L[i-1]
  n2,m2=L[i]
  x,y=plus((a+b)*n2,m2,-n1*a,m1)
  g=math.gcd(x,y*b)
  L[i+1]=x//g,y*b//g
a,b=L[K-1]
c,d=L[-1]
x,y=a*d,c*b
g=math.gcd(x,y)
x,y=x//g,y//g
if x==0:
  print(0)
  exit()
print(str(x)+"/"+str(y))
0