結果

問題 No.2461 一点張り
ユーザー KudeKude
提出日時 2023-09-08 21:26:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 173 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 68,200 KB
最終ジャッジ日時 2024-06-26 14:16:29
合計ジャッジ時間 1,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,136 KB
testcase_01 WA -
testcase_02 AC 60 ms
66,604 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 60 ms
67,084 KB
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    p, k = input().split()
    p = float(p)
    k = int(k)
    if p:
        print(f'{(1 - (1 - p) ** k) / p:.15f}')
    else:
        print(1)
0