結果

問題 No.2461 一点張り
ユーザー イルカイルカ
提出日時 2024-06-14 02:55:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 66,960 KB
最終ジャッジ日時 2024-06-14 02:55:31
合計ジャッジ時間 2,279 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 AC 65 ms
66,496 KB
testcase_02 AC 64 ms
66,792 KB
testcase_03 AC 64 ms
65,604 KB
testcase_04 AC 63 ms
66,776 KB
testcase_05 AC 63 ms
65,488 KB
testcase_06 AC 63 ms
66,960 KB
testcase_07 AC 63 ms
66,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
for i in range(N):
    p,K=map(float,input().split())
    print((1-(1-p)**K)/p if p!=0 else K)
0