結果
問題 | No.1980 [Cherry 4th Tune D] 停止距離 |
ユーザー | k_o_pasture |
提出日時 | 2022-06-17 22:38:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 441 bytes |
コンパイル時間 | 748 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 77,952 KB |
最終ジャッジ日時 | 2024-10-09 08:55:23 |
合計ジャッジ時間 | 18,991 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,968 KB |
testcase_01 | AC | 204 ms
77,348 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 173 ms
77,548 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 703 ms
77,184 KB |
testcase_08 | WA | - |
testcase_09 | AC | 718 ms
77,488 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 704 ms
77,364 KB |
testcase_13 | WA | - |
testcase_14 | AC | 727 ms
77,440 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 40 ms
51,968 KB |
ソースコード
from math import sqrt,floor N = int(input()) for _ in range(N): T, m, L = map(float, input().split()) T += 0.000000001 m += 0.000000001 L += 0.000000001 ans = -10 * m * T + sqrt((10*m*T)**2 + 20*m*L) ans = ans * 0.001 * 3600 n = 5 ans = floor(ans * 10 ** n) / (10 ** n) i = str(ans).find('.') if len(str(ans)) - i == 2: print(str(ans) + '0') elif len(str(ans)) - i == 1: print(str(ans) + '00') else: print(str(ans)[:i+3])