結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 163 ms
76,780 KB
testcase_02 AC 408 ms
77,568 KB
testcase_03 AC 303 ms
77,156 KB
testcase_04 AC 124 ms
76,544 KB
testcase_05 AC 365 ms
77,824 KB
testcase_06 AC 528 ms
78,464 KB
testcase_07 AC 542 ms
78,720 KB
testcase_08 AC 533 ms
78,436 KB
testcase_09 AC 538 ms
78,632 KB
testcase_10 AC 537 ms
78,208 KB
testcase_11 AC 510 ms
78,336 KB
testcase_12 AC 558 ms
78,592 KB
testcase_13 AC 526 ms
78,464 KB
testcase_14 AC 538 ms
78,592 KB
testcase_15 AC 530 ms
78,208 KB
testcase_16 AC 539 ms
77,824 KB
testcase_17 AC 515 ms
77,920 KB
testcase_18 AC 528 ms
77,696 KB
testcase_19 AC 514 ms
77,952 KB
testcase_20 AC 534 ms
77,824 KB
testcase_21 AC 538 ms
78,080 KB
testcase_22 AC 512 ms
77,952 KB
testcase_23 AC 535 ms
77,720 KB
testcase_24 AC 541 ms
77,912 KB
testcase_25 AC 539 ms
78,208 KB
testcase_26 AC 36 ms
52,608 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