結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー siganaisiganai
提出日時 2022-06-17 23:52:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 80,212 KB
最終ジャッジ日時 2024-04-17 16:22:34
合計ジャッジ時間 11,139 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
63,872 KB
testcase_01 AC 142 ms
78,848 KB
testcase_02 AC 260 ms
80,000 KB
testcase_03 AC 213 ms
79,232 KB
testcase_04 AC 131 ms
78,960 KB
testcase_05 AC 244 ms
79,616 KB
testcase_06 AC 320 ms
79,872 KB
testcase_07 AC 324 ms
80,176 KB
testcase_08 WA -
testcase_09 AC 323 ms
79,888 KB
testcase_10 WA -
testcase_11 AC 326 ms
79,772 KB
testcase_12 AC 321 ms
80,176 KB
testcase_13 AC 326 ms
79,852 KB
testcase_14 AC 322 ms
79,916 KB
testcase_15 WA -
testcase_16 AC 321 ms
79,744 KB
testcase_17 AC 323 ms
79,664 KB
testcase_18 AC 323 ms
79,616 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 327 ms
79,872 KB
testcase_22 AC 324 ms
79,704 KB
testcase_23 AC 357 ms
79,488 KB
testcase_24 WA -
testcase_25 AC 322 ms
80,000 KB
testcase_26 AC 66 ms
63,872 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