結果
問題 | No.58 イカサマなサイコロ |
ユーザー | memmemmi |
提出日時 | 2018-06-28 16:57:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,205 bytes |
コンパイル時間 | 735 ms |
コンパイル使用メモリ | 91,216 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 23:30:14 |
合計ジャッジ時間 | 1,270 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <cfloat> #include <map> #include <utility> #include <set> #include <iostream> #include <memory> #include <string> #include <vector> #include <algorithm> #include <functional> #include <sstream> #include <complex> #include <stack> #include <queue> #include <iomanip> using namespace std; #define INF 1e9 #define PI acos(-1) typedef long long ll; double ziro[15][100] = {0.0}; double taro[15][100] = {0.0}; int main() { int n, k; cin >> n >> k; ziro[0][0] = taro[0][0] = 1; for (int i = 0; i < n; i++) { for (int j = 0; j < 60; j++) { for (int k = 1; k <= 6; k++) { ziro[i + 1][j + k] += ziro[i][j]/6; } } } for (int i = 0; i < k; i++) { for (int j = 0; j < 60; j++) { for (int k = 4; k <= 6; k++) { taro[i + 1][j + k] += taro[i][j]/3; } } } for (int i = k; i < n; i++) { for (int j = 0; j < 60; j++) { for (int k = 1; k <= 6; k++) { taro[i + 1][j + k] += taro[i][j]/6; } } } double p = 0.0; for (int i = 0; i <= 60; i++) {//二郎の合計を固定 for (int j = i + 1; j <= 60; j++) { p += ziro[n][i] * taro[n][j]; } } printf("%.8f\n", p); return 0; }