結果

問題 No.1501 酔歩
ユーザー kozykozy
提出日時 2021-05-08 00:30:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,876 KB
最終ジャッジ日時 2024-09-15 12:36:21
合計ジャッジ時間 13,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 266 ms
21,956 KB
testcase_06 AC 213 ms
19,156 KB
testcase_07 AC 256 ms
21,260 KB
testcase_08 AC 82 ms
13,440 KB
testcase_09 AC 225 ms
20,244 KB
testcase_10 AC 108 ms
14,464 KB
testcase_11 AC 204 ms
19,224 KB
testcase_12 AC 154 ms
16,704 KB
testcase_13 AC 30 ms
11,008 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 30 ms
11,008 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 333 ms
24,744 KB
testcase_23 AC 327 ms
24,860 KB
testcase_24 AC 324 ms
24,748 KB
testcase_25 AC 332 ms
24,876 KB
testcase_26 AC 336 ms
24,876 KB
testcase_27 AC 332 ms
24,736 KB
testcase_28 AC 329 ms
24,868 KB
testcase_29 AC 336 ms
24,736 KB
testcase_30 AC 342 ms
24,744 KB
testcase_31 AC 337 ms
24,856 KB
testcase_32 AC 337 ms
24,868 KB
testcase_33 AC 333 ms
24,736 KB
testcase_34 AC 332 ms
24,744 KB
testcase_35 AC 331 ms
24,748 KB
testcase_36 AC 328 ms
24,744 KB
testcase_37 AC 336 ms
24,860 KB
testcase_38 AC 334 ms
24,872 KB
testcase_39 AC 337 ms
24,748 KB
testcase_40 AC 326 ms
24,744 KB
testcase_41 AC 348 ms
24,744 KB
testcase_42 AC 261 ms
21,568 KB
testcase_43 AC 31 ms
10,880 KB
testcase_44 AC 31 ms
10,880 KB
testcase_45 AC 257 ms
21,724 KB
testcase_46 AC 247 ms
21,724 KB
testcase_47 AC 251 ms
21,712 KB
testcase_48 AC 262 ms
21,672 KB
testcase_49 AC 265 ms
21,664 KB
testcase_50 AC 265 ms
21,776 KB
testcase_51 AC 275 ms
21,648 KB
testcase_52 AC 262 ms
21,640 KB
testcase_53 AC 30 ms
10,880 KB
testcase_54 AC 30 ms
11,008 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()))
if N==1:
  print("1/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