結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー pitPpitP
提出日時 2022-06-17 21:54:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 78,268 KB
最終ジャッジ日時 2024-10-09 07:44:39
合計ジャッジ時間 21,906 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 221 ms
77,824 KB
testcase_02 AC 627 ms
77,568 KB
testcase_03 AC 445 ms
77,644 KB
testcase_04 AC 188 ms
77,524 KB
testcase_05 AC 540 ms
77,660 KB
testcase_06 AC 817 ms
77,696 KB
testcase_07 AC 818 ms
77,696 KB
testcase_08 AC 817 ms
77,696 KB
testcase_09 AC 828 ms
77,568 KB
testcase_10 WA -
testcase_11 AC 810 ms
77,696 KB
testcase_12 AC 796 ms
78,268 KB
testcase_13 AC 808 ms
77,728 KB
testcase_14 AC 789 ms
77,824 KB
testcase_15 AC 791 ms
77,952 KB
testcase_16 AC 797 ms
77,664 KB
testcase_17 AC 778 ms
77,952 KB
testcase_18 AC 802 ms
77,824 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 790 ms
77,440 KB
testcase_23 AC 805 ms
77,796 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


n = int(input())
for _ in range(n):
    t,mu,l = map(float,input().split())
    ans = 3.6 * math.sqrt( (10*mu*t)**2 + 20*mu*l) - 36 * mu * t
    moji = str(ans) + "0" * 10
    if 0 <= ans < 10.0:
        print(moji[:4])
    elif 10.0 <= ans < 100.0:
        print(moji[:5])
    elif 100.0 <= ans < 1000.0:
        print(moji[:6])
    else:
        print(moji[:7])
0