結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー pitPpitP
提出日時 2022-06-17 21:49:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,564 KB
最終ジャッジ日時 2024-10-09 07:33:21
合計ジャッジ時間 27,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 271 ms
77,184 KB
testcase_02 WA -
testcase_03 AC 586 ms
77,564 KB
testcase_04 AC 230 ms
77,440 KB
testcase_05 AC 719 ms
77,184 KB
testcase_06 AC 1,071 ms
77,496 KB
testcase_07 AC 1,074 ms
77,184 KB
testcase_08 WA -
testcase_09 AC 1,085 ms
76,672 KB
testcase_10 AC 1,056 ms
77,184 KB
testcase_11 AC 1,052 ms
77,312 KB
testcase_12 AC 1,148 ms
77,184 KB
testcase_13 AC 1,116 ms
77,440 KB
testcase_14 AC 1,065 ms
76,928 KB
testcase_15 AC 1,125 ms
76,928 KB
testcase_16 AC 1,071 ms
76,288 KB
testcase_17 AC 1,076 ms
76,416 KB
testcase_18 AC 1,087 ms
76,544 KB
testcase_19 WA -
testcase_20 AC 1,086 ms
76,288 KB
testcase_21 AC 1,079 ms
76,764 KB
testcase_22 AC 1,079 ms
76,416 KB
testcase_23 WA -
testcase_24 AC 1,053 ms
76,288 KB
testcase_25 AC 1,060 ms
76,288 KB
testcase_26 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
eps = pow(10,-12)
for _ in range(n):
    t,mu,l = map(float,input().split())
    right = 5100.0
    left = 0.0
    while abs(right - left) > eps:
        mid = (right+left)/2
        now = (1/3.6*mid*t + 1/3.6/3.6*mid*mid/20/mu)
        if now >= l:
            right = mid
        else:
            left = mid
    moji = str(right)
    if 0 <= right < 10.0:
        print(moji[:4])
    elif 10.0 <= right < 100.0:
        print(moji[:5])
    elif 100.0 <= right < 1000.0:
        print(moji[:6])
    else:
        print(moji[:7])
0