結果
問題 | No.212 素数サイコロと合成数サイコロ (2) |
ユーザー | btk |
提出日時 | 2015-05-22 22:28:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 280 ms / 5,000 ms |
コード長 | 1,078 bytes |
コンパイル時間 | 682 ms |
コンパイル使用メモリ | 87,440 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 05:05:08 |
合計ジャッジ時間 | 1,338 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,948 KB |
testcase_04 | AC | 6 ms
6,940 KB |
testcase_05 | AC | 280 ms
6,940 KB |
testcase_06 | AC | 31 ms
6,940 KB |
testcase_07 | AC | 32 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
ソースコード
#include<iostream> #include<fstream> #include<sstream> #include<string> #include<cstdio> #include<cstdlib> #include<cstring> #include<ctime> #include<stack> #include<queue> #include<set> #include<map> #include<vector> #include<list> #include<algorithm> #include<utility> #include<complex> #include<functional> using namespace std; #define input_init stringstream ss; string strtoken, token; istringstream is #define input_line getline(cin, strtoken);is.str(strtoken);is.clear(istringstream::goodbit) #define input_token(num) ss.str(""); ss.clear(stringstream::goodbit); getline(is, token, ','); ss << token; ss >> num double t[] = { 2, 3, 5, 7, 11, 13 }; double s[] = { 4, 6, 8, 9, 10, 12 }; int p, c; double e = 0; void func1(double val,int n){ if (n == c){ e += val; return; } for (int i = 0; i < 6; i++){ func1(val*(s[i] / 6.0), n + 1); } } void func2(double val,int n){ if (n == p){ func1(val, 0); return; } for (int i = 0; i < 6; i++){ func2(val*(t[i]/6.0),n+1); } } int main(void){ cin >> p >> c; func2(1, 0); printf("%.10f\n",e); return(0); }