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