結果

問題 No.1478 Simple Sugoroku
ユーザー yuusanlondonyuusanlondon
提出日時 2021-04-16 20:56:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,580 KB
最終ジャッジ日時 2024-07-02 23:39:44
合計ジャッジ時間 4,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,612 KB
testcase_01 AC 44 ms
53,284 KB
testcase_02 AC 45 ms
53,164 KB
testcase_03 AC 43 ms
52,616 KB
testcase_04 AC 44 ms
52,472 KB
testcase_05 AC 43 ms
53,308 KB
testcase_06 AC 44 ms
53,348 KB
testcase_07 AC 42 ms
52,756 KB
testcase_08 AC 41 ms
52,812 KB
testcase_09 AC 41 ms
53,312 KB
testcase_10 AC 41 ms
52,356 KB
testcase_11 AC 46 ms
53,012 KB
testcase_12 AC 41 ms
53,020 KB
testcase_13 AC 75 ms
88,904 KB
testcase_14 AC 75 ms
88,308 KB
testcase_15 AC 72 ms
89,760 KB
testcase_16 AC 83 ms
88,320 KB
testcase_17 AC 76 ms
88,672 KB
testcase_18 AC 76 ms
89,236 KB
testcase_19 AC 78 ms
88,904 KB
testcase_20 AC 81 ms
90,580 KB
testcase_21 AC 83 ms
88,704 KB
testcase_22 AC 73 ms
89,168 KB
testcase_23 AC 76 ms
89,252 KB
testcase_24 AC 72 ms
88,772 KB
testcase_25 AC 72 ms
89,552 KB
testcase_26 AC 74 ms
89,488 KB
testcase_27 AC 72 ms
88,816 KB
testcase_28 AC 72 ms
86,700 KB
testcase_29 AC 72 ms
87,420 KB
testcase_30 AC 72 ms
87,772 KB
testcase_31 AC 72 ms
87,172 KB
testcase_32 AC 71 ms
87,280 KB
testcase_33 AC 71 ms
87,736 KB
testcase_34 AC 73 ms
87,184 KB
testcase_35 AC 68 ms
87,712 KB
testcase_36 AC 72 ms
87,948 KB
testcase_37 AC 71 ms
88,576 KB
testcase_38 AC 78 ms
87,680 KB
testcase_39 AC 74 ms
89,212 KB
testcase_40 AC 73 ms
88,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os,io,heapq
input=io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
n,m=map(int,input().split())
a=list(map(int,input().split()))
b=[]
for i in range(m):
  b.append(n-a[i])
currsum=0
flag=0
for i in range(m-1,-1,-1):
  if (currsum+m)<=(m-i-1)*b[i]:
    print(a[0]-1+(currsum+m)/(m-i-1))
    exit()
  else:
    currsum+=b[i]
print(n-1)
0