結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー Akijin_007Akijin_007
提出日時 2022-06-17 22:28:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 3,000 ms
コード長 872 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 138,896 KB
最終ジャッジ日時 2024-10-09 08:39:52
合計ジャッジ時間 14,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 157 ms
88,144 KB
testcase_02 AC 371 ms
121,224 KB
testcase_03 AC 278 ms
107,316 KB
testcase_04 AC 132 ms
82,340 KB
testcase_05 AC 338 ms
116,096 KB
testcase_06 AC 491 ms
138,692 KB
testcase_07 AC 480 ms
138,652 KB
testcase_08 AC 489 ms
138,532 KB
testcase_09 AC 479 ms
138,816 KB
testcase_10 AC 492 ms
138,624 KB
testcase_11 AC 481 ms
138,820 KB
testcase_12 AC 487 ms
138,692 KB
testcase_13 AC 485 ms
138,896 KB
testcase_14 AC 484 ms
138,692 KB
testcase_15 AC 481 ms
138,560 KB
testcase_16 AC 493 ms
138,448 KB
testcase_17 AC 491 ms
138,828 KB
testcase_18 AC 489 ms
138,440 KB
testcase_19 AC 520 ms
138,704 KB
testcase_20 AC 494 ms
138,644 KB
testcase_21 AC 499 ms
138,444 KB
testcase_22 AC 487 ms
138,316 KB
testcase_23 AC 491 ms
138,832 KB
testcase_24 AC 491 ms
138,568 KB
testcase_25 AC 489 ms
138,700 KB
testcase_26 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())

T = [0] * N
for i in range(N):
    # T[i] = list(map(float, input().split()))
    T[i] = input().split()

for i in range(N):
    for j in range(3):
        s = T[i][j]
        T[i][j] = int(s[:-3]) * 100 + int(s[-2:]) * 1

def S(v, t, m, l):
    v *= 1000 / 3600
    return (v * t * 20 * m) + (v * v) - (l * 20 * m * 10 ** 4)


# print(T)

for i in range(N):
    t = T[i][0]
    m = T[i][1]
    l = T[i][2]
    # print(t, m, l)

    vmax = 52000000
    vmin = 0

    while vmax - vmin > 1:
        h = (vmax + vmin) // 2
        if S(h, t, m, l) > 0:
            vmax = h
        else:
            vmin = h

    # print(format(int(vmin*100)/100, ".2f"))
    # print(vmin)
    # print(vmin)
    vmin //= 100

    c, d = divmod(vmin, 100)
    print(str(c) + "." + format(d, "02d"))
0