結果
問題 | No.352 カード並べ |
ユーザー | koyumeishi |
提出日時 | 2016-03-11 23:57:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,291 bytes |
コンパイル時間 | 992 ms |
コンパイル使用メモリ | 92,992 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 01:33:53 |
合計ジャッジ時間 | 1,223 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <cstdio> #include <sstream> #include <map> #include <string> #include <algorithm> #include <queue> #include <cmath> #include <functional> #include <set> #include <ctime> #include <random> #include <chrono> using namespace std; template<class T> istream& operator >> (istream& is, vector<T>& vec){for(T& val: vec) is >> val; return is;} template<class T> istream& operator , (istream& is, T& val){ return is >> val;} template<class T> ostream& operator << (ostream& os, const vector<T>& vec){for(int i=0; i<vec.size(); i++) os << vec[i] << (i==vec.size()-1?"":" "); return os;} template<class T> ostream& operator , (ostream& os, const T& val){ return os << " " << val;} template<class T> ostream& operator >> (ostream& os, const T& val){ return os << " " << val;} using Real = long double; int main(){ int n; cin >> n; if(n==1){ cout << 1 << endl; return 0; } if(n==2){ cout << 2 << endl; return 0; } vector<Real> f(n+1, 1.0); for(int k=2; k<=n; k++){ f[k] = k * f[k-1]; } Real ans = 2; for(int i=3; i<=n; i++){ for(int l=1; l<=i-1; l++){ for(int r=l+1; r<=i-1; r++){ Real cost = l*r; ans += cost * 2.0 * f[i-2] / f[i] ; } } ans += 1 * 2.0 / i; } printf("%.16f\n", (double)ans); return 0; }