結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー 👑 rin204rin204
提出日時 2022-06-24 16:06:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 806 ms / 3,000 ms
コード長 479 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-11-08 09:54:43
合計ジャッジ時間 22,169 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 239 ms
76,928 KB
testcase_02 AC 595 ms
77,056 KB
testcase_03 AC 449 ms
76,800 KB
testcase_04 AC 199 ms
76,928 KB
testcase_05 AC 520 ms
76,800 KB
testcase_06 AC 773 ms
76,800 KB
testcase_07 AC 793 ms
76,800 KB
testcase_08 AC 772 ms
76,800 KB
testcase_09 AC 794 ms
76,928 KB
testcase_10 AC 782 ms
76,672 KB
testcase_11 AC 763 ms
76,800 KB
testcase_12 AC 749 ms
76,800 KB
testcase_13 AC 785 ms
76,800 KB
testcase_14 AC 768 ms
77,312 KB
testcase_15 AC 806 ms
76,928 KB
testcase_16 AC 793 ms
76,800 KB
testcase_17 AC 780 ms
77,184 KB
testcase_18 AC 794 ms
77,440 KB
testcase_19 AC 798 ms
77,184 KB
testcase_20 AC 777 ms
77,312 KB
testcase_21 AC 784 ms
77,312 KB
testcase_22 AC 778 ms
77,184 KB
testcase_23 AC 777 ms
77,440 KB
testcase_24 AC 794 ms
77,312 KB
testcase_25 AC 770 ms
77,440 KB
testcase_26 AC 42 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    t, m, L = map(float, input().split())
    t = int(100 * t + 0.0001)
    m = int(100 * m + 0.0001)
    L = int(100 * L + 0.0001)
    l = 0
    r = 510001
    
    f = lambda x:18*m*x*t + 25*x*x <= 18*18*20*m*L


    while r - l > 1:
        mid = (l + r) // 2
        if f(mid):
            l = mid
        else:
            r = mid

    a = l // 100
    b = l - 100 * a
    ans = "{}.{:0>2}".format(a, b)
    print(ans)

for _ in range(int(input())):
    solve()
0