結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー stack9996
提出日時 2015-08-26 23:53:28
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 422 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 64,892 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 22:35:34
合計ジャッジ時間 1,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

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[201];
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("%.13lf\n", ans[k]);
	return 0;
}
0