結果
問題 | No.212 素数サイコロと合成数サイコロ (2) |
ユーザー | takubokudori |
提出日時 | 2017-09-07 18:44:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,260 bytes |
コンパイル時間 | 798 ms |
コンパイル使用メモリ | 95,224 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-07 11:06:44 |
合計ジャッジ時間 | 1,424 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,824 KB |
testcase_09 | AC | 1 ms
6,816 KB |
ソースコード
#include <algorithm> #include <cmath> #include <cstdio> #include <cstdlib> #include <functional> #include <iomanip> #include <iostream> #include <iterator> #include <limits> #include <list> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <valarray> #include <vector> #define MOD 1000000007 #define pe(str) return cout<<(str)<<endl,0 #define px(str) {cout<<(str)<<endl;exit(0);} #define pr(str) cout<<(str)<<endl #define prpr(str) cout<<str<<endl #define db(str) cerr<<(str)<<endl #define dbdb(str) cerr<<str<<endl #define re(i,n) for(int i=0;i<(n);i++) #define rep(i,a,b) for(int i=(a);i<(b);i++) #define bw(a,b,c) (((a)<=(b))&&((b)<=(c))) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<int,int> pii; template<class InputIterator> void dump(InputIterator first,InputIterator last,char delim=' '){ for(InputIterator it=first;it!=last;it++){ if(it!=first)cout<<delim; cout<<*it; } } int p; int c; int main(void){ cin>>p>>c; ld a=(ld)(2+3+5+7+11+13)/(ld)6.0; ld b=(ld)(4+6+8+9+10+12)/(ld)6.0; ld s=1,t=1; re(i,p) s*=a; re(i,c) s*=b; cout<<setprecision(100)<<s<<endl; return 0; }