結果
問題 | No.1033 乱数サイ |
ユーザー | toto6114 |
提出日時 | 2020-04-24 22:58:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 846 bytes |
コンパイル時間 | 1,018 ms |
コンパイル使用メモリ | 103,816 KB |
実行使用メモリ | 10,148 KB |
最終ジャッジ日時 | 2024-10-15 03:38:20 |
合計ジャッジ時間 | 6,501 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,148 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
ソースコード
// _/ _/ _/_/_/ _/ //_/_/_/_/ _/_/ _/_/_/_/ _/_/ _/ _/_/ // _/ _/ _/ _/ _/ _/ _/_/_/ _/ //_/ _/ _/ _/ _/ _/ _/ _/ _/ // _/_/ _/_/ _/_/ _/_/ _/_/ _/ #include<iostream> #include<algorithm> #include<cmath> #include<iomanip> #include<set> #include<map> #include<queue> #include<vector> using namespace std; using ll=long long; const int MOD=1e9+7; const double pi=3.14159265358979323846; const int inf=1e9; const ll INF=5e18; using P=pair<int,int>; int main() { cin.tie(0),cout.tie(0); ios::sync_with_stdio(false); double n,k,cnt=0,ans=0; cin >> n >> k; cnt=(2.0+n)*(n+1.0)/2.0; for(double i=1.0; i<=n; i++) { for(double j=1.0; j<=k; j++) { ans+=i/cnt; } } cout << fixed << setprecision(10) << ans << endl; }