結果
問題 |
No.211 素数サイコロと合成数サイコロ (1)
|
ユーザー |
![]() |
提出日時 | 2020-01-15 03:16:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 404 bytes |
コンパイル時間 | 1,953 ms |
コンパイル使用メモリ | 170,240 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-29 17:20:51 |
合計ジャッジ時間 | 2,858 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { vector<int> S(6), G(6), SG; S = {2, 3, 5, 7, 11, 13}; G = {4, 6, 8, 9, 10, 12}; for (int i = 0; i < 6; i++) for (int j = 0; j < 6; j++) SG.push_back(S.at(i) * G.at(j)); int K; cin >> K; double cnt = 0; for (int i = 0; i < SG.size(); i++) if (SG.at(i) == K) cnt++; cout << fixed << setprecision(12) << cnt / 36; }