結果
問題 | No.2461 一点張り |
ユーザー | eQe |
提出日時 | 2024-10-19 00:49:32 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 960 bytes |
コンパイル時間 | 6,016 ms |
コンパイル使用メモリ | 309,440 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-10-19 00:49:39 |
合計ジャッジ時間 | 6,316 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 4 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> namespace my{ void main(); void solve(); } int main(){my::main();} namespace my{ #define RD(T,...) T __VA_ARGS__;lin(__VA_ARGS__) #define LL(...) ll __VA_ARGS__;lin(__VA_ARGS__) #define FO(n) for(ll ij=n;ij--;) #define FOR(i,...) for(auto[i,i##stop,i##step]=range(0,__VA_ARGS__);i<i##stop;i+=i##step) #define fo(i,...) FO##__VA_OPT__(R)(i __VA_OPT__(,__VA_ARGS__)) using namespace std; using dd=long double; using ll=long long; auto range(bool s,ll a,ll b=1e18,ll c=1){if(b==1e18)b=a,(s?b:a)=0;return array{a-s,b,c};} constexpr char nl=10; constexpr char sp=32; void io(){cin.tie(nullptr)->sync_with_stdio(0);cout<<fixed<<setprecision(15);} void lin(auto&...a){(cin>>...>>a);} template<char c=sp>void pp(const auto&...a){ll n=sizeof...(a);((cout<<a<<string(--n>0,c)),...);cout<<nl;} void main(){io();ll T=1;fo(T)solve();} void solve(){ LL(T); fo(T){ RD(dd,p); LL(K); pp((1-pow(1-p,K))/p); } }}