結果

問題 No.450 ベー君のシャトルラン
ユーザー 👑 KazunKazun
提出日時 2020-11-18 00:46:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 75,372 KB
最終ジャッジ日時 2024-07-23 08:39:49
合計ジャッジ時間 47,723 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,936 ms
75,192 KB
testcase_01 AC 1,939 ms
75,108 KB
testcase_02 AC 1,937 ms
75,212 KB
testcase_03 AC 1,937 ms
75,304 KB
testcase_04 AC 1,937 ms
75,120 KB
testcase_05 AC 1,938 ms
75,260 KB
testcase_06 AC 1,938 ms
75,284 KB
testcase_07 AC 1,938 ms
75,160 KB
testcase_08 AC 1,938 ms
75,188 KB
testcase_09 AC 1,938 ms
75,324 KB
testcase_10 AC 1,937 ms
75,104 KB
testcase_11 AC 1,937 ms
75,164 KB
testcase_12 AC 1,938 ms
75,040 KB
testcase_13 AC 1,937 ms
75,060 KB
testcase_14 AC 1,936 ms
75,160 KB
testcase_15 AC 1,936 ms
75,240 KB
testcase_16 AC 1,937 ms
75,372 KB
testcase_17 AC 1,937 ms
75,336 KB
testcase_18 AC 1,935 ms
75,220 KB
testcase_19 AC 1,936 ms
75,248 KB
testcase_20 AC 1,937 ms
74,964 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from time import time

vl,vr=map(int,input().split())
v=vl+vr

d=int(input())
w=int(input())
iwl=1/(w+vl);iwr=1/(w+vr)

BEGIN=time()
TIME_LIMIT=1.900
T=0

while time()-BEGIN<=TIME_LIMIT:
    T+=(d-T*v)*iwr
    T+=(d-T*v)*iwl
print(T*w)
0