結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー sotanishysotanishy
提出日時 2022-06-17 22:33:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 79,024 KB
最終ジャッジ日時 2024-10-09 08:47:59
合計ジャッジ時間 15,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 149 ms
76,288 KB
testcase_02 WA -
testcase_03 AC 300 ms
77,568 KB
testcase_04 AC 126 ms
76,400 KB
testcase_05 AC 363 ms
77,696 KB
testcase_06 AC 526 ms
78,848 KB
testcase_07 AC 530 ms
78,720 KB
testcase_08 WA -
testcase_09 AC 527 ms
78,592 KB
testcase_10 WA -
testcase_11 AC 530 ms
78,780 KB
testcase_12 AC 528 ms
78,592 KB
testcase_13 WA -
testcase_14 AC 531 ms
78,464 KB
testcase_15 AC 527 ms
78,720 KB
testcase_16 AC 524 ms
78,080 KB
testcase_17 AC 518 ms
78,180 KB
testcase_18 AC 519 ms
78,208 KB
testcase_19 AC 516 ms
78,080 KB
testcase_20 AC 514 ms
78,464 KB
testcase_21 AC 516 ms
78,080 KB
testcase_22 WA -
testcase_23 AC 520 ms
78,080 KB
testcase_24 WA -
testcase_25 AC 516 ms
78,208 KB
testcase_26 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
for _ in range(N):
    T, m, L = map(float, input().split())
    lb, ub = 0, 10**10
    while ub - lb > 1:
        v = (lb + ub) // 2
        if 20*m*360*T*v + v**2 <= 20*m*360**2*L:
            lb = v
        else:
            ub = v
    ans = str(lb)
    while len(ans) < 3:
        ans = "0" + ans
    ans = ans[:-2] + "." + ans[-2:]
    print(ans)
0