結果

問題 No.1478 Simple Sugoroku
ユーザー timitimi
提出日時 2021-05-20 10:32:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 89,216 KB
最終ジャッジ日時 2024-10-10 07:12:08
合計ジャッジ時間 4,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 36 ms
52,480 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 35 ms
51,968 KB
testcase_13 AC 67 ms
89,104 KB
testcase_14 AC 65 ms
88,192 KB
testcase_15 AC 67 ms
89,076 KB
testcase_16 AC 65 ms
89,088 KB
testcase_17 AC 64 ms
89,092 KB
testcase_18 AC 66 ms
88,576 KB
testcase_19 AC 66 ms
88,840 KB
testcase_20 AC 65 ms
89,216 KB
testcase_21 AC 66 ms
89,216 KB
testcase_22 AC 65 ms
89,088 KB
testcase_23 AC 66 ms
88,960 KB
testcase_24 AC 65 ms
88,792 KB
testcase_25 AC 70 ms
89,096 KB
testcase_26 AC 66 ms
89,088 KB
testcase_27 AC 66 ms
88,960 KB
testcase_28 AC 63 ms
85,632 KB
testcase_29 AC 63 ms
86,272 KB
testcase_30 AC 63 ms
86,528 KB
testcase_31 AC 63 ms
86,612 KB
testcase_32 AC 62 ms
86,528 KB
testcase_33 AC 64 ms
87,040 KB
testcase_34 AC 67 ms
86,784 KB
testcase_35 AC 63 ms
86,656 KB
testcase_36 AC 64 ms
87,296 KB
testcase_37 AC 66 ms
88,448 KB
testcase_38 AC 65 ms
88,320 KB
testcase_39 AC 66 ms
88,188 KB
testcase_40 AC 65 ms
88,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
A=list(map(int, input().split()))
if M==1:
  print(N-1)
  exit()
b=A[0]-1+(N-A[-1])
cnt=M
ans=N-1
def f(a,r):
  d=a/(1-r)
  return d 
e=0
cnt=1
ans=N
for i in range(M-1,0,-1):
  r=i/M
  g=f(1,r)
  e+=A[-1]-A[i]
  ff=g+e/cnt
  cnt+=1
  ans=min(ans,b+ff)
print(ans)
0