結果

問題 No.1478 Simple Sugoroku
ユーザー yuusanlondonyuusanlondon
提出日時 2021-04-16 20:55:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-07-02 23:37:25
合計ジャッジ時間 4,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 43 ms
52,608 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 43 ms
51,712 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 44 ms
52,352 KB
testcase_10 AC 42 ms
51,712 KB
testcase_11 WA -
testcase_12 AC 43 ms
51,840 KB
testcase_13 AC 76 ms
88,192 KB
testcase_14 AC 76 ms
87,936 KB
testcase_15 AC 77 ms
87,936 KB
testcase_16 AC 77 ms
88,192 KB
testcase_17 AC 77 ms
88,064 KB
testcase_18 AC 76 ms
88,576 KB
testcase_19 AC 77 ms
88,064 KB
testcase_20 AC 78 ms
87,936 KB
testcase_21 AC 76 ms
88,576 KB
testcase_22 AC 78 ms
88,192 KB
testcase_23 AC 77 ms
88,576 KB
testcase_24 AC 77 ms
87,936 KB
testcase_25 AC 78 ms
88,192 KB
testcase_26 AC 77 ms
87,936 KB
testcase_27 AC 77 ms
87,936 KB
testcase_28 AC 74 ms
85,632 KB
testcase_29 AC 74 ms
86,400 KB
testcase_30 AC 74 ms
86,016 KB
testcase_31 AC 76 ms
86,272 KB
testcase_32 AC 74 ms
86,272 KB
testcase_33 AC 77 ms
86,400 KB
testcase_34 AC 75 ms
86,528 KB
testcase_35 AC 74 ms
86,400 KB
testcase_36 AC 76 ms
86,272 KB
testcase_37 AC 76 ms
87,424 KB
testcase_38 AC 77 ms
87,680 KB
testcase_39 AC 76 ms
87,552 KB
testcase_40 AC 75 ms
87,936 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]-1+(currsum+m)/(m-i-1))
    exit()
  else:
    currsum+=b[i]
print(n-1)
0