結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー siganaisiganai
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
63,872 KB
testcase_01 AC 127 ms
79,172 KB
testcase_02 AC 246 ms
79,812 KB
testcase_03 AC 196 ms
79,492 KB
testcase_04 AC 114 ms
79,064 KB
testcase_05 AC 231 ms
79,540 KB
testcase_06 AC 304 ms
79,760 KB
testcase_07 AC 311 ms
80,156 KB
testcase_08 WA -
testcase_09 AC 302 ms
79,812 KB
testcase_10 WA -
testcase_11 AC 309 ms
79,836 KB
testcase_12 AC 307 ms
79,708 KB
testcase_13 AC 305 ms
80,256 KB
testcase_14 AC 304 ms
80,032 KB
testcase_15 WA -
testcase_16 AC 308 ms
79,508 KB
testcase_17 AC 312 ms
79,940 KB
testcase_18 AC 306 ms
79,768 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 310 ms
80,004 KB
testcase_22 AC 307 ms
79,684 KB
testcase_23 AC 309 ms
79,868 KB
testcase_24 WA -
testcase_25 AC 309 ms
79,868 KB
testcase_26 AC 57 ms
64,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/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))
0