結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー KudeKude
提出日時 2022-06-17 21:49:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,081 ms / 3,000 ms
コード長 464 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-01 09:49:40
合計ジャッジ時間 49,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 390 ms
10,752 KB
testcase_02 AC 1,478 ms
10,880 KB
testcase_03 AC 1,022 ms
10,880 KB
testcase_04 AC 275 ms
10,880 KB
testcase_05 AC 1,308 ms
10,752 KB
testcase_06 AC 2,037 ms
10,880 KB
testcase_07 AC 2,013 ms
10,880 KB
testcase_08 AC 2,019 ms
10,880 KB
testcase_09 AC 2,020 ms
10,752 KB
testcase_10 AC 1,969 ms
10,752 KB
testcase_11 AC 2,020 ms
11,008 KB
testcase_12 AC 2,012 ms
10,752 KB
testcase_13 AC 1,972 ms
10,880 KB
testcase_14 AC 1,997 ms
10,752 KB
testcase_15 AC 2,044 ms
10,880 KB
testcase_16 AC 2,071 ms
10,880 KB
testcase_17 AC 1,916 ms
10,752 KB
testcase_18 AC 1,959 ms
10,880 KB
testcase_19 AC 1,965 ms
10,752 KB
testcase_20 AC 2,081 ms
10,880 KB
testcase_21 AC 1,952 ms
10,880 KB
testcase_22 AC 1,966 ms
10,880 KB
testcase_23 AC 2,053 ms
10,880 KB
testcase_24 AC 1,937 ms
10,880 KB
testcase_25 AC 1,952 ms
11,008 KB
testcase_26 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt
for _ in range(int(input())):
    tf, mf, lf = map(float, input().split())
    t = int(tf * 100 + 0.5)
    m = int(mf * 100 + 0.5)
    l = int(lf * 100 + 0.5)
    r2 = 36 * 36 * ((10 * m * t) ** 2 + 20 * 10000 * m * l)
    r = isqrt(r2)
    ans = r - 360 * m * t
    ans //= 1000
    print(f'{ans // 100}.{ans % 100:02d}')
    # vt+v^2/20m=l
    # v^2 +20mt v -20ml=0
    # v=-10mt + sqrt((10mt)^2+20ml) = 20ml / (10mt + sqrt((10mt)^2+20ml))
0