結果
| 問題 |
No.211 素数サイコロと合成数サイコロ (1)
|
| コンテスト | |
| ユーザー |
kotamanegi
|
| 提出日時 | 2016-11-15 17:47:20 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 834 bytes |
| コンパイル時間 | 833 ms |
| コンパイル使用メモリ | 84,488 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-26 01:51:18 |
| 合計ジャッジ時間 | 1,840 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 25 WA * 8 |
ソースコード
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream>
#include<map>
#include <iomanip>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
using namespace std;
#define MAX_MOD 1000000007
#define REP(i,n) for(long long i = 0;i < n;++i)
#define LONGINF 1000000000000000000
double hoge[2000] = {};
int main() {
int k;
cin >> k;
int cnt[6] = { 2,3,5,7,11,13 };
int h[6] = { 4,6,8,9,10,12 };
double wow = 1;
wow /= 36;
for (int i = 0;i < 6;++i) {
REP(q, 6) {
hoge[cnt[i] * h[q]] += wow;
}
}
cout <<setprecision(10) << hoge[k] << endl;
return 0;
}
kotamanegi