結果

問題 No.2461 一点張り
ユーザー timitimi
提出日時 2023-09-08 21:47:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 291 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 93,464 KB
最終ジャッジ日時 2024-06-26 14:43:30
合計ジャッジ時間 4,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
88,064 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
from decimal import Decimal
for _ in range(N):
  x,y=input().split()
  y=int(y)
  if x[-2]=='.':
    x=x+'00'
  elif x[-2]=='.':
    x=x+'0'
  x=int(x.replace('.',''))
  ans=0;c=1
  for i in range(1,y):
    d=Decimal(c*x)/Decimal(1000) 
    ans+=i*d 
    c-=d
  print(ans+y*c)
0