結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 204 ms
76,800 KB
testcase_02 AC 507 ms
76,544 KB
testcase_03 AC 386 ms
76,416 KB
testcase_04 AC 177 ms
77,056 KB
testcase_05 AC 463 ms
76,544 KB
testcase_06 WA -
testcase_07 AC 665 ms
76,672 KB
testcase_08 AC 671 ms
76,416 KB
testcase_09 AC 695 ms
76,672 KB
testcase_10 WA -
testcase_11 AC 651 ms
76,672 KB
testcase_12 AC 697 ms
76,544 KB
testcase_13 AC 685 ms
76,288 KB
testcase_14 AC 683 ms
76,800 KB
testcase_15 WA -
testcase_16 AC 676 ms
76,672 KB
testcase_17 AC 689 ms
76,672 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 689 ms
76,544 KB
testcase_22 AC 647 ms
76,672 KB
testcase_23 AC 686 ms
76,288 KB
testcase_24 WA -
testcase_25 AC 684 ms
76,672 KB
testcase_26 AC 45 ms
52,096 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