結果

問題 No.1501 酔歩
ユーザー kozykozy
提出日時 2021-05-08 00:29:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 508 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,996 KB
最終ジャッジ日時 2024-09-15 12:36:03
合計ジャッジ時間 12,925 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 268 ms
21,828 KB
testcase_06 AC 211 ms
19,152 KB
testcase_07 AC 257 ms
21,392 KB
testcase_08 AC 83 ms
13,184 KB
testcase_09 AC 222 ms
20,184 KB
testcase_10 AC 106 ms
14,592 KB
testcase_11 AC 201 ms
19,352 KB
testcase_12 AC 153 ms
16,828 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 325 ms
24,740 KB
testcase_23 AC 323 ms
24,860 KB
testcase_24 AC 325 ms
24,868 KB
testcase_25 AC 325 ms
24,872 KB
testcase_26 AC 327 ms
24,748 KB
testcase_27 AC 328 ms
24,860 KB
testcase_28 AC 325 ms
24,864 KB
testcase_29 AC 332 ms
24,864 KB
testcase_30 AC 326 ms
24,868 KB
testcase_31 AC 328 ms
24,860 KB
testcase_32 AC 334 ms
24,864 KB
testcase_33 AC 326 ms
24,996 KB
testcase_34 AC 327 ms
24,792 KB
testcase_35 AC 327 ms
24,872 KB
testcase_36 AC 327 ms
24,876 KB
testcase_37 AC 327 ms
24,860 KB
testcase_38 AC 330 ms
24,868 KB
testcase_39 AC 337 ms
24,876 KB
testcase_40 AC 323 ms
24,992 KB
testcase_41 AC 339 ms
24,740 KB
testcase_42 AC 253 ms
21,708 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 247 ms
21,724 KB
testcase_46 AC 244 ms
21,728 KB
testcase_47 AC 246 ms
21,712 KB
testcase_48 AC 259 ms
21,780 KB
testcase_49 AC 259 ms
21,776 KB
testcase_50 AC 257 ms
21,792 KB
testcase_51 AC 275 ms
21,800 KB
testcase_52 AC 256 ms
21,768 KB
testcase_53 WA -
testcase_54 AC 30 ms
10,880 KB
testcase_55 AC 29 ms
11,008 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()))
if N==1:
  print(1)
  exit()
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