結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー titiatitia
提出日時 2023-05-25 01:34:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 584 ms / 3,000 ms
コード長 451 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-06-06 10:01:03
合計ジャッジ時間 15,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 158 ms
76,440 KB
testcase_02 AC 414 ms
78,168 KB
testcase_03 AC 304 ms
77,428 KB
testcase_04 AC 126 ms
76,800 KB
testcase_05 AC 373 ms
77,540 KB
testcase_06 AC 514 ms
78,208 KB
testcase_07 AC 544 ms
78,592 KB
testcase_08 AC 536 ms
78,208 KB
testcase_09 AC 528 ms
78,228 KB
testcase_10 AC 547 ms
78,376 KB
testcase_11 AC 528 ms
78,080 KB
testcase_12 AC 556 ms
78,336 KB
testcase_13 AC 529 ms
78,428 KB
testcase_14 AC 521 ms
78,464 KB
testcase_15 AC 538 ms
78,336 KB
testcase_16 AC 546 ms
77,696 KB
testcase_17 AC 523 ms
77,824 KB
testcase_18 AC 533 ms
77,696 KB
testcase_19 AC 519 ms
77,568 KB
testcase_20 AC 541 ms
77,696 KB
testcase_21 AC 551 ms
78,080 KB
testcase_22 AC 534 ms
78,080 KB
testcase_23 AC 549 ms
77,568 KB
testcase_24 AC 571 ms
77,696 KB
testcase_25 AC 584 ms
77,568 KB
testcase_26 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def calc(v,t,m):
    return v*t+v*v/(20*m)


eps=10**(-10)
T0=int(input())
for tests in range(T0):
    T,mu,L=map(float,input().split())

    OK=0
    NG=1<<60

    for tests in range(100):
        mid=(OK+NG)/2

        if calc(mid,T,mu)>L+eps:
            NG=mid
        else:
            OK=mid

    ANS=str(int(OK*360))

    while len(ANS)<3:
        ANS="0"+ANS

    print(ANS[:-2]+"."+ANS[-2:])

    
    
0