結果

問題 No.1478 Simple Sugoroku
ユーザー timitimi
提出日時 2021-05-20 10:33:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 89,144 KB
最終ジャッジ日時 2024-10-10 07:12:15
合計ジャッジ時間 3,829 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,004 KB
testcase_01 AC 39 ms
52,000 KB
testcase_02 AC 39 ms
52,732 KB
testcase_03 AC 36 ms
53,988 KB
testcase_04 AC 35 ms
52,252 KB
testcase_05 AC 36 ms
53,528 KB
testcase_06 AC 36 ms
53,072 KB
testcase_07 AC 36 ms
53,560 KB
testcase_08 AC 36 ms
52,496 KB
testcase_09 AC 36 ms
52,616 KB
testcase_10 AC 36 ms
54,092 KB
testcase_11 AC 36 ms
52,492 KB
testcase_12 AC 36 ms
52,596 KB
testcase_13 AC 65 ms
88,868 KB
testcase_14 AC 71 ms
88,400 KB
testcase_15 AC 66 ms
88,656 KB
testcase_16 AC 66 ms
88,668 KB
testcase_17 AC 65 ms
88,936 KB
testcase_18 AC 66 ms
88,348 KB
testcase_19 AC 67 ms
88,580 KB
testcase_20 AC 66 ms
89,144 KB
testcase_21 AC 65 ms
88,940 KB
testcase_22 AC 66 ms
88,776 KB
testcase_23 AC 65 ms
88,976 KB
testcase_24 AC 66 ms
88,936 KB
testcase_25 AC 67 ms
89,068 KB
testcase_26 AC 66 ms
88,784 KB
testcase_27 AC 68 ms
88,840 KB
testcase_28 AC 64 ms
85,768 KB
testcase_29 AC 64 ms
86,176 KB
testcase_30 AC 68 ms
86,380 KB
testcase_31 AC 64 ms
86,688 KB
testcase_32 AC 64 ms
86,888 KB
testcase_33 AC 66 ms
87,232 KB
testcase_34 AC 64 ms
87,420 KB
testcase_35 AC 65 ms
87,648 KB
testcase_36 AC 65 ms
87,644 KB
testcase_37 AC 66 ms
88,432 KB
testcase_38 AC 66 ms
87,904 KB
testcase_39 AC 66 ms
88,200 KB
testcase_40 AC 66 ms
87,948 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
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