結果
問題 | No.352 カード並べ |
ユーザー | Kmcode1 |
提出日時 | 2016-03-11 23:31:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,272 bytes |
コンパイル時間 | 890 ms |
コンパイル使用メモリ | 90,508 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 01:24:02 |
合計ジャッジ時間 | 1,300 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
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; __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 += (__float128)((__float128)1.0 / ((__float128)i + (__float128)1.0))*(__float128)(2.0); } double outt = ans; printf("%.16f\n", outt); return 0; }