結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー ygd.ygd.
提出日時 2022-06-17 21:46:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,250 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-04-17 13:26:42
合計ジャッジ時間 7,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,128 KB
testcase_01 AC 1,563 ms
10,752 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def hantei(x,T,m,L):
    # val = v**2 + 20*m*T*v - 20*m*L
    val = x**2 + 7200*m*T*x - 20*360*360*m*L
    return val <= 0


def main():
    N = int(input())
    for _ in range(N):
        T,m,L = map(float,input().split())
        # xの最大値と最小値。答えはこれを100で割る
        ng = pow(10,18)
        ok = 0
        while abs(ok-ng) > 1:
            mid = (ok+ng)//2
            if hantei(mid,T,m,L):
                ok = mid
            else:
                ng = mid
        ok = str(ok)
        if len(ok) == 1:
            ans = '0.0' + str(ok)
        elif len(ok) == 2:
            ans = '0.' + str(ok)
        else:
            ans = ok[:-2] + '.' + ok[-2:]
        print(ans)




if __name__ == '__main__':
    main()
0