結果
| 問題 |
No.1980 [Cherry 4th Tune D] 停止距離
|
| コンテスト | |
| ユーザー |
siganai
|
| 提出日時 | 2022-06-17 23:52:04 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 476 bytes |
| コンパイル時間 | 309 ms |
| コンパイル使用メモリ | 82,132 KB |
| 実行使用メモリ | 80,256 KB |
| 最終ジャッジ日時 | 2024-10-09 10:29:38 |
| 合計ジャッジ時間 | 10,351 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 WA * 6 |
ソースコード
#!/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
mod=998244353
import sys
input=sys.stdin.readline
n = int(input())
for _ in range(n):
t,myu,l=map(float,input().split())
v = -10 * myu * t + (100 * myu ** 2 * t ** 2 + 20 * myu * l) ** 0.5
V = v * 3.6
print('{:.2f}'.format(math.floor(V * 100) / 100))
siganai