結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー hir355hir355
提出日時 2022-06-17 21:45:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-10-09 07:27:34
合計ジャッジ時間 24,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 239 ms
76,672 KB
testcase_02 AC 705 ms
76,416 KB
testcase_03 AC 538 ms
76,672 KB
testcase_04 AC 197 ms
76,416 KB
testcase_05 AC 639 ms
76,700 KB
testcase_06 AC 943 ms
76,928 KB
testcase_07 AC 936 ms
77,440 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 939 ms
76,800 KB
testcase_12 AC 932 ms
76,800 KB
testcase_13 AC 961 ms
76,544 KB
testcase_14 AC 951 ms
76,672 KB
testcase_15 AC 942 ms
76,928 KB
testcase_16 AC 969 ms
76,672 KB
testcase_17 AC 941 ms
76,672 KB
testcase_18 AC 942 ms
76,836 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 952 ms
76,800 KB
testcase_22 AC 945 ms
76,800 KB
testcase_23 AC 945 ms
77,056 KB
testcase_24 WA -
testcase_25 AC 929 ms
76,800 KB
testcase_26 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for _ in range(n):
    b, a, c = map(float, input().split())
    v = 2 * (5 ** .5 * (a * (5 * a * b ** 2 + c)) ** .5 - 5 * a * b)
    x, y = str(v * 3600 / 1000).split('.')
    print(x, y[:2][::-1].zfill(2)[::-1], sep='.')
0