結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー lilictakalilictaka
提出日時 2022-06-18 00:31:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 3,000 ms
コード長 532 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,408 KB
最終ジャッジ日時 2024-10-09 11:08:30
合計ジャッジ時間 14,301 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 165 ms
78,420 KB
testcase_02 AC 335 ms
84,928 KB
testcase_03 AC 271 ms
82,176 KB
testcase_04 AC 147 ms
78,592 KB
testcase_05 AC 308 ms
83,908 KB
testcase_06 AC 438 ms
88,760 KB
testcase_07 AC 439 ms
88,752 KB
testcase_08 AC 416 ms
89,408 KB
testcase_09 AC 428 ms
89,012 KB
testcase_10 AC 410 ms
89,152 KB
testcase_11 AC 435 ms
88,760 KB
testcase_12 AC 415 ms
89,264 KB
testcase_13 AC 422 ms
89,404 KB
testcase_14 AC 436 ms
88,756 KB
testcase_15 AC 416 ms
89,280 KB
testcase_16 AC 426 ms
88,800 KB
testcase_17 AC 435 ms
89,280 KB
testcase_18 AC 430 ms
88,444 KB
testcase_19 AC 437 ms
88,972 KB
testcase_20 AC 441 ms
89,188 KB
testcase_21 AC 437 ms
88,932 KB
testcase_22 AC 432 ms
88,536 KB
testcase_23 AC 433 ms
88,520 KB
testcase_24 AC 433 ms
88,640 KB
testcase_25 AC 430 ms
89,192 KB
testcase_26 AC 43 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
def isok(v,T,u,L):
    if 25 * (v ** 2)  +18 * u*T*v -20 * u * L * (18 ** 2) <= 0:
        return True
    else:
        return False
def solve(T,u,L):
    ok = 0
    ng = 5101 * 10 ** 2 
    while ng -ok > 1:
        v = (ng+ok) //2
        if isok(v,T,u,L):
            ok = v
        else:
            ng = v
    v = ok / 10 ** 2
    return v

ANS = []
for _ in range(N):
    T,u,L = map(lambda x:int(x[:-3] + x[-2:]),input().split())
    ANS.append(solve(T,u,L))
for ans in ANS:
    print('{:.2f}'.format(ans))
0