結果

問題 No.1478 Simple Sugoroku
ユーザー yuusanlondonyuusanlondon
提出日時 2021-04-16 20:48:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 90,384 KB
最終ジャッジ日時 2024-07-02 23:23:19
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,228 KB
testcase_01 AC 37 ms
53,492 KB
testcase_02 AC 35 ms
53,108 KB
testcase_03 AC 35 ms
53,496 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 33 ms
52,644 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
52,852 KB
testcase_10 AC 40 ms
52,876 KB
testcase_11 WA -
testcase_12 AC 33 ms
52,360 KB
testcase_13 AC 62 ms
88,956 KB
testcase_14 AC 61 ms
89,024 KB
testcase_15 AC 62 ms
89,636 KB
testcase_16 AC 63 ms
88,992 KB
testcase_17 AC 63 ms
89,332 KB
testcase_18 AC 64 ms
89,408 KB
testcase_19 AC 61 ms
89,912 KB
testcase_20 AC 60 ms
89,220 KB
testcase_21 AC 59 ms
88,876 KB
testcase_22 AC 60 ms
90,128 KB
testcase_23 AC 61 ms
90,384 KB
testcase_24 AC 61 ms
88,804 KB
testcase_25 AC 61 ms
88,724 KB
testcase_26 AC 61 ms
88,736 KB
testcase_27 AC 65 ms
88,836 KB
testcase_28 AC 64 ms
87,472 KB
testcase_29 AC 63 ms
87,656 KB
testcase_30 AC 66 ms
87,356 KB
testcase_31 AC 63 ms
86,544 KB
testcase_32 AC 58 ms
87,140 KB
testcase_33 AC 60 ms
88,288 KB
testcase_34 AC 60 ms
87,084 KB
testcase_35 AC 61 ms
87,808 KB
testcase_36 AC 62 ms
86,820 KB
testcase_37 AC 60 ms
88,280 KB
testcase_38 AC 64 ms
88,172 KB
testcase_39 AC 65 ms
89,112 KB
testcase_40 AC 65 ms
88,172 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-1)
0