結果
問題 | No.352 カード並べ |
ユーザー | Kmcode1 |
提出日時 | 2016-03-11 23:29:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,252 bytes |
コンパイル時間 | 812 ms |
コンパイル使用メモリ | 90,760 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 01:23:57 |
合計ジャッジ時間 | 1,176 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cctype> #include<cstdlib> #include<algorithm> #include<bitset> #include<cstdio> #include<cstring> #include<string> #include<cctype> #include<cstdlib> #include<algorithm> #include<bitset> #include<vector> #include<list> #include<deque> #include<queue> #include<map> #include<set> #include<stack> #include<cmath> #include<sstream> #include<fstream> #include<iomanip> #include<ctime> #include<complex> #include<functional> #include<climits> #include<cassert> #include<iterator> #include<quadmath.h> using namespace std; #define MAX 21 int n; int main(){ cin >> n; if (n < 7){ return 1; } __float128 ans = 0; for (int i = 0; i < n; i++){ __float128 past = 1.0; for (int j = 1; j <= i; j++){ past *= (__float128)(j); } if (i == 0){ ans += 1.0; continue; } if (i == 1){ ans += 1.0; continue; } for (int j = 0; j + 1 < i; j++){ for (int k = 1; k <= i; k++){ for (int kk = 1; kk <= i; kk++){ if (k != kk){ __float128 F = k*kk; F /= past; F /= (__float128)(i + 1); ans += F; } } } } ans += (1.0 / (i + 1.0))*(__float128)(2.0); } double outt = ans; printf("%.16f\n", outt); return 0; }