結果

問題 No.2461 一点張り
ユーザー ryohei22ryohei22
提出日時 2023-09-08 22:00:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,508 KB
最終ジャッジ日時 2024-06-26 14:58:43
合計ジャッジ時間 1,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
51,840 KB
testcase_01 AC 67 ms
71,808 KB
testcase_02 AC 66 ms
72,832 KB
testcase_03 AC 84 ms
76,508 KB
testcase_04 AC 73 ms
74,240 KB
testcase_05 AC 73 ms
72,960 KB
testcase_06 AC 69 ms
71,808 KB
testcase_07 AC 61 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	p, K = input().split()
	p = float(p)
	K = int(K)

	ans = K * (1 - p)**(K - 1)
	for i in range(1, K):
		ans += i * (1 - p)**(i - 1) * p

	print(ans)
0