結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-29 03:51:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 784 ms / 3,000 ms
コード長 377 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 77,484 KB
最終ジャッジ日時 2024-10-29 03:51:48
合計ジャッジ時間 20,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,256 KB
testcase_01 AC 191 ms
76,420 KB
testcase_02 AC 549 ms
76,448 KB
testcase_03 AC 401 ms
76,716 KB
testcase_04 AC 158 ms
76,244 KB
testcase_05 AC 493 ms
76,328 KB
testcase_06 AC 686 ms
76,228 KB
testcase_07 AC 723 ms
76,448 KB
testcase_08 AC 730 ms
76,264 KB
testcase_09 AC 701 ms
76,516 KB
testcase_10 AC 712 ms
76,488 KB
testcase_11 AC 698 ms
76,644 KB
testcase_12 AC 768 ms
77,484 KB
testcase_13 AC 711 ms
76,372 KB
testcase_14 AC 711 ms
76,672 KB
testcase_15 AC 720 ms
76,304 KB
testcase_16 AC 730 ms
76,676 KB
testcase_17 AC 730 ms
76,324 KB
testcase_18 AC 696 ms
76,516 KB
testcase_19 AC 720 ms
76,512 KB
testcase_20 AC 728 ms
76,704 KB
testcase_21 AC 713 ms
76,412 KB
testcase_22 AC 784 ms
77,120 KB
testcase_23 AC 698 ms
76,584 KB
testcase_24 AC 730 ms
76,396 KB
testcase_25 AC 734 ms
76,324 KB
testcase_26 AC 38 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for _ in range(n):
  t,m,l=input().split()
  s1,s2=t.split(".")
  t=int(s1+s2)
  s1,s2=m.split(".")
  m=int(s1+s2)
  s1,s2=l.split(".")
  l=int(s1+s2)
  ok=0
  ng=10**8
  while ng-ok>1:
    v=(ok+ng)//2
    if 2*m*v*t*36+v*10*v*10<=20*m*l*36*36:
      ok=v
    else:
      ng=v
  v=ok
  v=str(v).zfill(6)
  v1,v2=v[:4],v[4:]
  print(str(int(v1))+"."+v2.zfill(2))
0