結果
| 問題 | No.212 素数サイコロと合成数サイコロ (2) |
| コンテスト | |
| ユーザー |
dnish
|
| 提出日時 | 2017-07-05 00:23:24 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 5,000 ms |
| + 473µs | |
| コード長 | 176 bytes |
| 記録 | |
| コンパイル時間 | 914 ms |
| コンパイル使用メモリ | 177,012 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-10 17:31:11 |
| 合計ジャッジ時間 | 2,124 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
const int inf=1e9;
int main(){
int P,C;
cin>>P>>C;
double ans=pow(41/6.0,P)*pow(49/6.0,C);
printf("%.10lf",ans);
return 0;
}
dnish