結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー sotanishysotanishy
提出日時 2022-06-17 21:28:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-04-17 12:54:28
合計ジャッジ時間 10,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 118 ms
76,800 KB
testcase_02 AC 235 ms
76,928 KB
testcase_03 AC 189 ms
76,416 KB
testcase_04 AC 109 ms
76,416 KB
testcase_05 AC 215 ms
76,800 KB
testcase_06 AC 289 ms
77,056 KB
testcase_07 AC 286 ms
76,928 KB
testcase_08 AC 288 ms
76,928 KB
testcase_09 AC 288 ms
77,184 KB
testcase_10 WA -
testcase_11 AC 289 ms
76,928 KB
testcase_12 AC 290 ms
77,056 KB
testcase_13 AC 289 ms
77,184 KB
testcase_14 AC 289 ms
77,184 KB
testcase_15 WA -
testcase_16 AC 291 ms
76,928 KB
testcase_17 AC 281 ms
76,928 KB
testcase_18 AC 297 ms
77,056 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 290 ms
77,312 KB
testcase_22 AC 292 ms
77,312 KB
testcase_23 AC 276 ms
76,928 KB
testcase_24 WA -
testcase_25 AC 293 ms
76,928 KB
testcase_26 AC 43 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
for _ in range(N):
    T, m, L = map(float, input().split())
    v = ((10*m*T)**2+20*m*L)**0.5 - 10*m*T
    v *= 3.6
    v = int(v*100)/100
    print(f"{v:0.2f}")
0