結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー rlangevinrlangevin
提出日時 2023-05-20 14:46:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,408 ms / 3,000 ms
コード長 611 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 89,680 KB
最終ジャッジ日時 2024-10-01 10:42:30
合計ジャッジ時間 35,138 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 348 ms
78,736 KB
testcase_02 AC 984 ms
85,556 KB
testcase_03 AC 711 ms
82,672 KB
testcase_04 AC 257 ms
78,176 KB
testcase_05 AC 869 ms
84,392 KB
testcase_06 AC 1,299 ms
89,680 KB
testcase_07 AC 1,330 ms
89,624 KB
testcase_08 AC 1,408 ms
88,864 KB
testcase_09 AC 1,339 ms
89,136 KB
testcase_10 AC 1,331 ms
89,544 KB
testcase_11 AC 1,307 ms
88,992 KB
testcase_12 AC 1,338 ms
89,192 KB
testcase_13 AC 1,294 ms
89,112 KB
testcase_14 AC 1,308 ms
88,880 KB
testcase_15 AC 1,293 ms
89,432 KB
testcase_16 AC 1,288 ms
87,368 KB
testcase_17 AC 1,285 ms
87,304 KB
testcase_18 AC 1,290 ms
87,544 KB
testcase_19 AC 1,307 ms
86,912 KB
testcase_20 AC 1,278 ms
87,704 KB
testcase_21 AC 1,292 ms
87,224 KB
testcase_22 AC 1,270 ms
87,284 KB
testcase_23 AC 1,295 ms
87,296 KB
testcase_24 AC 1,350 ms
87,552 KB
testcase_25 AC 1,322 ms
87,692 KB
testcase_26 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def f(T, m, L, V):
    V *= 10
    return 36 * V * 20 * m * T * 100 + V * V * 10000 <= 36 * 36 * L * 20 * m * 10000

N = int(input())
for _ in range(N):
    T, m, L = input().split()
    a, b = T.split(".")
    T = int(a + b)
    a, b = m.split(".")
    m = int(a + b)
    a, b = L.split(".")
    L = int(a + b)
    yes = 0
    no = 10 ** 18
    while abs(yes - no) != 1:
        mid = (yes + no)//2
        if f(T, m, L, mid):
            yes = mid
        else:
            no = mid
    low = yes % 100
    yes //= 100
    print("{0}.{1}".format(yes, str(low).zfill(2)))
0