結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー AtamaokaCAtamaokaC
提出日時 2022-06-17 21:43:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-09 07:21:04
合計ジャッジ時間 20,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 233 ms
76,416 KB
testcase_02 AC 568 ms
76,544 KB
testcase_03 AC 429 ms
76,544 KB
testcase_04 AC 190 ms
76,416 KB
testcase_05 AC 511 ms
76,416 KB
testcase_06 AC 755 ms
76,672 KB
testcase_07 AC 755 ms
76,160 KB
testcase_08 AC 736 ms
76,416 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 750 ms
77,056 KB
testcase_12 AC 752 ms
76,672 KB
testcase_13 WA -
testcase_14 AC 733 ms
76,928 KB
testcase_15 WA -
testcase_16 AC 753 ms
76,672 KB
testcase_17 AC 753 ms
76,288 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 741 ms
76,544 KB
testcase_21 AC 744 ms
76,800 KB
testcase_22 WA -
testcase_23 AC 738 ms
76,800 KB
testcase_24 WA -
testcase_25 AC 727 ms
76,416 KB
testcase_26 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for _ in range(N):
    T, mu, L = map(float,input().split())
    v = 20*mu*L / (((10*mu*T)**2 + 20*mu*L)**(1/2) + 10*mu*T)
    u = int(v*3600/1000*100)
    print(u//100, '.', (u%100)//10, u%10, sep='')
0