結果
| 問題 |
No.1980 [Cherry 4th Tune D] 停止距離
|
| コンテスト | |
| ユーザー |
siganai
|
| 提出日時 | 2022-06-17 23:59:32 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 518 bytes |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 18,336 KB |
| 最終ジャッジ日時 | 2024-10-09 10:37:53 |
| 合計ジャッジ時間 | 5,691 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 1 -- * 25 |
ソースコード
#!/usr/bin/env PyPy3
from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
from decimal import *
mod=998244353
import sys
input=sys.stdin.readline
n = int(input())
for _ in range(n):
t,myu,l=map(Decimal,input().split())
v = -10 * myu * t + (100 * myu ** 2 * t ** 2 + 20 * myu * l) ** Decimal(0.5)
V = v * Decimal(3.6)
print('{:.2f}'.format(math.floor(V * 100) / 100))
siganai