結果

問題 No.2461 一点張り
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-09-08 21:38:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-26 14:30:50
合計ジャッジ時間 1,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 77 ms
72,576 KB
testcase_02 AC 75 ms
72,576 KB
testcase_03 AC 96 ms
76,288 KB
testcase_04 AC 92 ms
76,544 KB
testcase_05 AC 80 ms
73,472 KB
testcase_06 AC 92 ms
77,184 KB
testcase_07 AC 83 ms
70,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for _ in range(n):
	p,k=input().split()
	k=int(k)
	p=float(p)
	q=1-p
	a=0
	for i in range(1,k):
		a+=pow(q,i-1)*p*i
	a+=pow(q,k-1)*k
	print(a)
0