結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 210 ms
76,800 KB
testcase_02 AC 521 ms
76,416 KB
testcase_03 AC 390 ms
76,800 KB
testcase_04 AC 184 ms
76,544 KB
testcase_05 AC 480 ms
76,672 KB
testcase_06 AC 671 ms
76,416 KB
testcase_07 AC 680 ms
76,800 KB
testcase_08 AC 708 ms
76,800 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 695 ms
76,672 KB
testcase_12 AC 690 ms
76,544 KB
testcase_13 WA -
testcase_14 AC 682 ms
76,672 KB
testcase_15 WA -
testcase_16 AC 686 ms
76,800 KB
testcase_17 AC 690 ms
76,544 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 706 ms
76,672 KB
testcase_21 AC 691 ms
76,544 KB
testcase_22 WA -
testcase_23 AC 692 ms
76,544 KB
testcase_24 WA -
testcase_25 AC 708 ms
76,800 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