結果
問題 | No.662 スロットマシーン |
ユーザー | naipia |
提出日時 | 2018-06-06 10:10:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 785 bytes |
コンパイル時間 | 1,586 ms |
コンパイル使用メモリ | 176,212 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-30 10:13:25 |
合計ジャッジ時間 | 2,295 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
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 | 1 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ map<string,int> a,b,c; vector<pair<string,int> > des; long long n1,n2,n3,in; double ans=0; vector<long long> v; string s; for(int i=0;i<5;i++){cin >> s >> in;des.push_back(make_pair(s,in));} cin >> n1;for(int i=0;i<n1;i++){cin >> s;a[s]++;} cin >> n2;for(int i=0;i<n1;i++){cin >> s;b[s]++;} cin >> n3;for(int i=0;i<n1;i++){cin >> s;c[s]++;} for(vector<pair<string,int> >::iterator iter=des.begin();iter!=des.end();iter++){ v.push_back(a[iter->first]*b[iter->first]*c[iter->first]*5); ans+=v.back()*iter->second; } printf("%f\n",ans/(n1*n2*n3)); for(vector<long long>::iterator iter=v.begin();iter!=v.end();iter++) cout << *iter << endl; return 0; }