結果
| 問題 | No.1980 [Cherry 4th Tune D] 停止距離 |
| コンテスト | |
| ユーザー |
siganai
|
| 提出日時 | 2022-06-17 23:59:32 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
TLE
不安定
|
| 実行時間 | - |
| コード長 | 518 bytes |
| 記録 | |
| コンパイル時間 | 58 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 12,032 KB |
| 最終ジャッジ日時 | 2026-09-12 13:14:16 |
| 合計ジャッジ時間 | 10,348 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 TLE * 1 -- * 24 |
ソースコード
#!/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