結果

問題 No.2461 一点張り
ユーザー なえしらなえしら
提出日時 2024-07-24 17:14:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 111 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 72,012 KB
最終ジャッジ日時 2024-07-24 17:14:38
合計ジャッジ時間 2,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,584 KB
testcase_01 RE -
testcase_02 AC 73 ms
65,284 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 61 ms
65,808 KB
testcase_07 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
  p, K = input().split()
  p, K = float(p), int(K)
  print((1-(1-p)**K)/p)
0