結果

問題 No.2461 一点張り
ユーザー detteiuudetteiuu
提出日時 2024-12-22 03:15:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 76,344 KB
最終ジャッジ日時 2024-12-22 03:15:47
合計ジャッジ時間 1,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,696 KB
testcase_01 AC 57 ms
74,168 KB
testcase_02 AC 59 ms
74,380 KB
testcase_03 AC 65 ms
76,344 KB
testcase_04 AC 61 ms
74,788 KB
testcase_05 AC 68 ms
76,172 KB
testcase_06 AC 60 ms
73,780 KB
testcase_07 AC 64 ms
67,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    p, K = input().split()
    p = float(p)
    K = int(K)
    ans = 0
    pre = 1
    for i in range(K-1):
        ans += (i+1)*(pre*p)
        pre *= (1-p)
    ans += K*pre
    print(ans)
0