結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー tamatotamato
提出日時 2022-06-17 21:49:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 3,000 ms
コード長 772 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 77,308 KB
最終ジャッジ日時 2024-10-09 07:33:31
合計ジャッジ時間 9,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,896 KB
testcase_01 AC 103 ms
76,608 KB
testcase_02 AC 207 ms
76,584 KB
testcase_03 AC 169 ms
76,664 KB
testcase_04 AC 92 ms
76,644 KB
testcase_05 AC 188 ms
76,684 KB
testcase_06 AC 265 ms
77,028 KB
testcase_07 AC 266 ms
76,968 KB
testcase_08 AC 264 ms
77,052 KB
testcase_09 AC 265 ms
77,268 KB
testcase_10 AC 259 ms
77,176 KB
testcase_11 AC 264 ms
77,308 KB
testcase_12 AC 258 ms
77,176 KB
testcase_13 AC 270 ms
77,232 KB
testcase_14 AC 259 ms
76,916 KB
testcase_15 AC 269 ms
77,264 KB
testcase_16 AC 261 ms
76,792 KB
testcase_17 AC 261 ms
76,864 KB
testcase_18 AC 262 ms
76,820 KB
testcase_19 AC 258 ms
76,752 KB
testcase_20 AC 259 ms
76,728 KB
testcase_21 AC 259 ms
76,584 KB
testcase_22 AC 259 ms
76,940 KB
testcase_23 AC 264 ms
76,752 KB
testcase_24 AC 258 ms
76,800 KB
testcase_25 AC 260 ms
76,692 KB
testcase_26 AC 39 ms
53,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    import math
    input = sys.stdin.readline

    for _ in range(int(input())):
        t, m, l = map(float, input().split())
        t = int(t * 100 + 0.5)
        m = int(m * 100 + 0.5)
        l = int(l * 100 + 0.5)
        ok = 0
        ng = 510000 + 1
        mid = (ok + ng) // 2
        while ng - ok > 1:
            #v = mid / 360
            #if v * t + (v ** 2 / (20 * m)) > l:
            if 20 * 360 * m * mid * t + (mid ** 2) * (10 ** 4) > 20 * (360 ** 2) * m * l:
                ng = mid
            else:
                ok = mid
            mid = (ok + ng) // 2
        ans = str(ok).zfill(3)
        ans1, ans2 = ans[:-2], ans[-2:]
        print(ans1 + "." + ans2)


if __name__ == '__main__':
    main()
0