結果

問題 No.2461 一点張り
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-09-08 21:24:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,132 KB
最終ジャッジ日時 2024-06-26 14:13:26
合計ジャッジ時間 1,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 65 ms
73,088 KB
testcase_02 AC 61 ms
73,176 KB
testcase_03 AC 64 ms
76,132 KB
testcase_04 AC 62 ms
73,600 KB
testcase_05 AC 63 ms
76,032 KB
testcase_06 AC 60 ms
73,436 KB
testcase_07 AC 63 ms
67,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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