結果

問題 No.2461 一点張り
ユーザー twooimp2twooimp2
提出日時 2024-03-03 19:55:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 6,139 ms
コンパイル使用メモリ 299,936 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2024-03-03 19:55:48
合計ジャッジ時間 7,442 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 5 ms
6,548 KB
testcase_02 AC 5 ms
6,548 KB
testcase_03 AC 5 ms
6,548 KB
testcase_04 AC 4 ms
6,548 KB
testcase_05 AC 5 ms
6,548 KB
testcase_06 AC 4 ms
6,548 KB
testcase_07 AC 5 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;

void IO(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
}

int main(){
  IO();
  ll t;
  cin>>t;
  while(t--){
    ld p;
    cin>>p;
    ll k;
    cin>>k;
    if(p==0){
      cout<<k<<endl;
    }else{
      ld ans=((ld)1-pow((ld)1-p,k))/p;
      cout<<ans<<endl;
    }
  }
}
0