結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー tamatotamato
提出日時 2022-06-17 21:43:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 77,456 KB
最終ジャッジ日時 2024-10-09 07:21:14
合計ジャッジ時間 9,705 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 102 ms
76,576 KB
testcase_02 AC 215 ms
76,416 KB
testcase_03 AC 172 ms
76,288 KB
testcase_04 AC 91 ms
76,288 KB
testcase_05 AC 199 ms
76,800 KB
testcase_06 AC 280 ms
77,108 KB
testcase_07 AC 280 ms
77,008 KB
testcase_08 AC 277 ms
76,952 KB
testcase_09 AC 277 ms
77,056 KB
testcase_10 WA -
testcase_11 AC 274 ms
77,160 KB
testcase_12 AC 281 ms
77,184 KB
testcase_13 WA -
testcase_14 AC 272 ms
76,672 KB
testcase_15 WA -
testcase_16 AC 281 ms
76,544 KB
testcase_17 AC 279 ms
76,416 KB
testcase_18 WA -
testcase_19 AC 285 ms
76,800 KB
testcase_20 WA -
testcase_21 AC 278 ms
76,672 KB
testcase_22 WA -
testcase_23 AC 280 ms
76,640 KB
testcase_24 WA -
testcase_25 AC 278 ms
77,056 KB
testcase_26 AC 39 ms
52,224 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())
        ok = 0
        ng = 510000 + 1
        mid = (ok + ng) // 2
        while ng - ok > 1:
            v = mid / 360
            if v * t + (v ** 2 / (20 * 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