結果

問題 No.2461 一点張り
ユーザー lloyzlloyz
提出日時 2023-09-08 21:41:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-06-26 14:35:39
合計ジャッジ時間 1,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 60 ms
73,216 KB
testcase_02 AC 64 ms
73,472 KB
testcase_03 AC 68 ms
76,544 KB
testcase_04 AC 63 ms
74,268 KB
testcase_05 AC 66 ms
76,256 KB
testcase_06 AC 61 ms
74,240 KB
testcase_07 AC 64 ms
67,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    p, k = map(float, input().split())
    k = int(k)
    ans = 0
    temp = 1.0
    for i in range(1, k):
        ans += i * temp * p
        temp *= 1 - p
    ans += k * temp
    print(ans)
0