結果
| 問題 |
No.211 素数サイコロと合成数サイコロ (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-07-19 22:14:21 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 354 bytes |
| コンパイル時間 | 1,796 ms |
| コンパイル使用メモリ | 166,152 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-26 01:34:07 |
| 合計ジャッジ時間 | 2,994 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int p[157];
int main() {
int a[] = {2, 3, 5, 7, 11, 13};
int b[] = {4, 6, 8, 9, 10, 12};
for (int i = 0; i < 6; i++) {
for (int j = 0; j < 6; j++) {
p[a[i] * b[j]]++;
}
}
int k;
cin >> k;
double ans = p[k] / 36.0;
cout << fixed << setprecision(14) << ans << endl;
return 0;
}