結果

問題 No.2461 一点張り
ユーザー FromBooskaFromBooska
提出日時 2023-09-08 22:39:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,596 KB
最終ジャッジ日時 2024-06-26 15:51:30
合計ジャッジ時間 1,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 75 ms
76,544 KB
testcase_02 AC 75 ms
76,596 KB
testcase_03 AC 79 ms
76,288 KB
testcase_04 AC 77 ms
76,580 KB
testcase_05 AC 78 ms
76,524 KB
testcase_06 AC 80 ms
76,316 KB
testcase_07 AC 75 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for t in range(T):
    p, K = map(float, input().split())
    K = int(K)
    prob = [0]*(K+1)
    cumu = 0
    for i in range(1, K+1):
        if i == K:
            prob[i] = 1-cumu
        else:
            prob[i] = (1-cumu)*p
        cumu += prob[i]
    EV = 0
    for i in range(1, K+1):
        EV += i*prob[i]

    #print(prob)
    print(EV)
0