結果
問題 | No.662 スロットマシーン |
ユーザー | jiang0503 |
提出日時 | 2018-03-21 23:35:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 1,451 bytes |
コンパイル時間 | 1,142 ms |
コンパイル使用メモリ | 87,212 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-24 19:44:02 |
合計ジャッジ時間 | 1,634 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 5 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <map> #include <iomanip> using namespace std; int main() { double expectValue = 0; unsigned int coin; string coinName; vector<string> coinNameArray(5); vector<unsigned int> coinNumber(5); map<string, int> coinMap; unsigned int n[3]; string tmpPic; vector<vector<string>> leel; vector<vector<unsigned int>> picNumber(3, vector<unsigned int>(5)); leel.resize(3); unsigned long long matchPattern[5]={0, 0, 0, 0, 0}; for(int i=0; i<5; ++i) { cin>>coinName>>coin; coinNameArray[i] = coinName; coinNumber[i]=coin; coinMap[coinName] = i; } for (int i = 0; i < 3; ++i) { cin >> n[i]; leel[i].resize(n[i]); for (int j = 0; j < n[i]; ++j) { cin >> tmpPic; picNumber[i][coinMap[tmpPic]]++; leel[i][j]=tmpPic; } } for(int i=0; i<5; ++i) { expectValue += ((picNumber[0][i]/(double)n[0])*(picNumber[1][i]/(double)n[1])*(picNumber[2][i]/(double)n[2])*(double)coinNumber[i]); matchPattern[i] = (unsigned long long)picNumber[0][i]*(unsigned long long)picNumber[1][i]*(unsigned long long)picNumber[2][i]*(unsigned long long)5; } expectValue *= 5.0; cout<<setprecision(7)<<expectValue<<endl; for (unsigned long long i : matchPattern) cout<< i <<endl; return 0; }