結果

問題 No.1993 Horse Racing
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-25 20:02:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 53,576 KB
最終ジャッジ日時 2024-08-25 20:02:21
合計ジャッジ時間 2,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,076 KB
testcase_01 AC 35 ms
53,184 KB
testcase_02 AC 34 ms
52,496 KB
testcase_03 AC 35 ms
52,196 KB
testcase_04 AC 34 ms
53,292 KB
testcase_05 AC 33 ms
52,200 KB
testcase_06 AC 34 ms
52,476 KB
testcase_07 AC 33 ms
52,424 KB
testcase_08 AC 34 ms
51,816 KB
testcase_09 AC 35 ms
51,876 KB
testcase_10 AC 35 ms
53,576 KB
testcase_11 AC 37 ms
52,624 KB
testcase_12 AC 38 ms
52,876 KB
testcase_13 AC 35 ms
52,900 KB
testcase_14 AC 35 ms
52,968 KB
testcase_15 AC 34 ms
52,356 KB
testcase_16 AC 34 ms
52,140 KB
testcase_17 AC 35 ms
52,916 KB
testcase_18 AC 35 ms
52,704 KB
testcase_19 AC 37 ms
52,560 KB
testcase_20 AC 37 ms
52,748 KB
testcase_21 AC 35 ms
52,772 KB
testcase_22 AC 36 ms
52,888 KB
testcase_23 AC 36 ms
53,492 KB
testcase_24 AC 36 ms
52,736 KB
testcase_25 AC 36 ms
53,068 KB
testcase_26 AC 41 ms
51,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
v=[0]*n
v[0]=1
for i in range(n-1):
  v[i+1]=(1000-a[i])/(1000/v[i])
print(1000-v[-1]*1000)
0