結果

問題 No.2461 一点張り
ユーザー 👑 rin204rin204
提出日時 2023-09-18 16:09:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-07-05 06:34:50
合計ジャッジ時間 1,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 66 ms
65,920 KB
testcase_02 AC 71 ms
65,920 KB
testcase_03 AC 62 ms
66,432 KB
testcase_04 AC 63 ms
65,664 KB
testcase_05 AC 62 ms
65,920 KB
testcase_06 AC 63 ms
66,304 KB
testcase_07 AC 72 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


for _ in range(int(input())):
    solve()
0