結果

問題 No.1993 Horse Racing
ユーザー sotanishysotanishy
提出日時 2022-07-01 22:00:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 53,496 KB
最終ジャッジ日時 2024-05-04 16:26:22
合計ジャッジ時間 1,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,324 KB
testcase_01 AC 33 ms
53,352 KB
testcase_02 AC 35 ms
52,488 KB
testcase_03 AC 34 ms
52,608 KB
testcase_04 AC 35 ms
53,476 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 34 ms
51,876 KB
testcase_07 AC 34 ms
52,432 KB
testcase_08 AC 34 ms
52,004 KB
testcase_09 AC 34 ms
52,548 KB
testcase_10 AC 35 ms
53,140 KB
testcase_11 AC 35 ms
52,164 KB
testcase_12 AC 38 ms
53,496 KB
testcase_13 AC 33 ms
52,484 KB
testcase_14 AC 34 ms
52,552 KB
testcase_15 AC 33 ms
52,764 KB
testcase_16 AC 32 ms
53,068 KB
testcase_17 AC 34 ms
52,628 KB
testcase_18 AC 34 ms
52,416 KB
testcase_19 AC 32 ms
53,228 KB
testcase_20 AC 33 ms
52,364 KB
testcase_21 AC 33 ms
53,068 KB
testcase_22 AC 32 ms
53,356 KB
testcase_23 AC 32 ms
52,128 KB
testcase_24 AC 34 ms
52,184 KB
testcase_25 AC 34 ms
52,564 KB
testcase_26 AC 33 ms
52,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
speed = [0] * N
speed[0] = 1
for i in range(N-1):
    t = 1000/speed[i]
    speed[i+1] = speed[i] - A[i]/t
print(1000-speed[N-1]*1000)
0