結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 221 ms
77,184 KB
testcase_02 AC 535 ms
76,716 KB
testcase_03 AC 395 ms
77,132 KB
testcase_04 AC 170 ms
76,928 KB
testcase_05 AC 475 ms
76,740 KB
testcase_06 WA -
testcase_07 AC 685 ms
76,544 KB
testcase_08 AC 683 ms
76,544 KB
testcase_09 AC 701 ms
76,928 KB
testcase_10 WA -
testcase_11 AC 699 ms
76,928 KB
testcase_12 AC 688 ms
77,164 KB
testcase_13 AC 728 ms
77,136 KB
testcase_14 AC 715 ms
76,928 KB
testcase_15 WA -
testcase_16 AC 697 ms
76,544 KB
testcase_17 AC 701 ms
77,056 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 683 ms
77,300 KB
testcase_22 AC 722 ms
76,928 KB
testcase_23 AC 695 ms
76,820 KB
testcase_24 WA -
testcase_25 AC 711 ms
76,800 KB
testcase_26 AC 42 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for _ in range(N):
    T, mu, L = map(float,input().split())
    v = ((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