結果

問題 No.1478 Simple Sugoroku
ユーザー yuusanlondonyuusanlondon
提出日時 2021-04-16 20:43:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-07-02 23:15:18
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 43 ms
52,096 KB
testcase_11 WA -
testcase_12 AC 43 ms
52,096 KB
testcase_13 AC 78 ms
87,808 KB
testcase_14 AC 73 ms
88,144 KB
testcase_15 AC 77 ms
87,936 KB
testcase_16 AC 72 ms
88,448 KB
testcase_17 AC 76 ms
88,320 KB
testcase_18 AC 72 ms
88,064 KB
testcase_19 AC 77 ms
88,320 KB
testcase_20 AC 72 ms
88,192 KB
testcase_21 AC 76 ms
88,064 KB
testcase_22 AC 71 ms
88,284 KB
testcase_23 AC 77 ms
88,192 KB
testcase_24 AC 72 ms
88,644 KB
testcase_25 AC 77 ms
88,704 KB
testcase_26 AC 74 ms
88,576 KB
testcase_27 AC 77 ms
88,064 KB
testcase_28 AC 69 ms
86,216 KB
testcase_29 AC 73 ms
86,400 KB
testcase_30 AC 70 ms
86,400 KB
testcase_31 AC 76 ms
86,400 KB
testcase_32 AC 69 ms
86,144 KB
testcase_33 AC 73 ms
86,400 KB
testcase_34 AC 71 ms
86,656 KB
testcase_35 AC 76 ms
86,656 KB
testcase_36 AC 71 ms
87,040 KB
testcase_37 AC 77 ms
87,680 KB
testcase_38 AC 72 ms
87,680 KB
testcase_39 AC 77 ms
87,424 KB
testcase_40 AC 73 ms
87,424 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+i+1)<=(m-i-1)*b[i]:
    print(a[0]+(currsum+i+1)/(m-i-1))
    exit()
  else:
    currsum+=b[i]
print(n)
0