結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー stack9996
提出日時 2015-08-26 23:52:23
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 65,092 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-18 14:46:29
合計ジャッジ時間 1,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <numeric>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <queue>

#define rep(i, a) FOR(i, 0, a)
#define FOR(i, a, b) for(int i = a; i < b; ++i)

int k;
double ans[200];
int a[6] = { 2, 3, 5, 7, 11, 13 }, b[6] = { 4, 6, 8, 9, 10, 12 };

int main(){
	rep(i, 6)rep(j, 6)ans[a[i] * b[j]] += (1 / 36.0);
	std::cin >> k;
	printf("%.10lf\n", ans[k]);
	return 0;
}
0