結果
問題 | No.2461 一点張り |
ユーザー | kpinkcat |
提出日時 | 2023-10-05 03:39:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 524 bytes |
コンパイル時間 | 1,127 ms |
コンパイル使用メモリ | 103,316 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-26 14:56:46 |
合計ジャッジ時間 | 1,753 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 5 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 6 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
ソースコード
#include<iostream> #include<iomanip> #include<string> #include<algorithm> #include<vector> #include<set> #include<list> #include<queue> #include<math.h> #include<bitset> using ll = long long; using namespace std; int main(){ int t, k; cin >> t; for (int i = 0; i < t; i++){ double p, sum1 = 0, r = 1; cin >> p >> k; for (int j = 0; j < (k-1); j++){ sum1 += (j+1)*p*r; r *= (1 -p); } cout << fixed << setprecision(6) << sum1 + k*r << endl; } }