結果

問題 No.2461 一点張り
ユーザー timitimi
提出日時 2023-09-09 03:08:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,824 KB
最終ジャッジ日時 2024-06-26 20:21:04
合計ジャッジ時間 1,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,616 KB
testcase_01 AC 77 ms
76,684 KB
testcase_02 AC 74 ms
76,436 KB
testcase_03 AC 86 ms
76,340 KB
testcase_04 AC 80 ms
76,624 KB
testcase_05 AC 87 ms
76,824 KB
testcase_06 AC 81 ms
76,608 KB
testcase_07 AC 73 ms
70,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for j in range(N):
  x,y=input().split()
  y=int(y)
  if x[-2]=='.':
    x=x+'00'
  elif x[-3]=='.':
    x=x+'0'
  x=int(x.replace('.',''))
  ans=0;c=1
  for i in range(1,y):
    d=c*x*pow(10,-3) 
    ans+=i*d 
    c-=d
  e=ans+y*c 
  print(e)
0