結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-28 17:32:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 77,628 KB
最終ジャッジ日時 2024-10-28 17:32:32
合計ジャッジ時間 29,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,348 KB
testcase_01 AC 280 ms
76,980 KB
testcase_02 AC 736 ms
77,264 KB
testcase_03 AC 562 ms
76,464 KB
testcase_04 AC 204 ms
76,988 KB
testcase_05 AC 667 ms
76,552 KB
testcase_06 WA -
testcase_07 AC 1,023 ms
76,464 KB
testcase_08 AC 1,041 ms
76,864 KB
testcase_09 AC 1,031 ms
76,912 KB
testcase_10 WA -
testcase_11 AC 1,005 ms
76,476 KB
testcase_12 AC 1,001 ms
76,592 KB
testcase_13 WA -
testcase_14 AC 1,038 ms
76,584 KB
testcase_15 WA -
testcase_16 AC 1,030 ms
77,628 KB
testcase_17 AC 1,014 ms
76,900 KB
testcase_18 WA -
testcase_19 AC 1,021 ms
77,408 KB
testcase_20 WA -
testcase_21 AC 995 ms
76,904 KB
testcase_22 WA -
testcase_23 AC 1,009 ms
77,392 KB
testcase_24 WA -
testcase_25 AC 1,036 ms
77,168 KB
testcase_26 AC 36 ms
52,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for _ in range(n):
  t,m,l=map(float,input().split())
  ok=0
  ng=2000
  for __ in range(100):
    v=(ok+ng)/2
    if v*t+(v**2)/(20*m)<=l:
      ok=v
    else:
      ng=v
  v=ok
  v=v*3600/1000
  v=int(v*100)
  v=str(v).zfill(6)
  v1,v2=v[:4],v[4:]
  print(str(int(v1))+"."+v2.zfill(2))
0