結果
問題 | No.662 スロットマシーン |
ユーザー | face4 |
提出日時 | 2018-06-04 16:55:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 840 ms |
コンパイル使用メモリ | 80,344 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 09:42:01 |
合計ジャッジ時間 | 1,598 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 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
6,940 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include<iostream> #include<map> using namespace std; int main(){ string str[5]; int coin[5], n[3]; map<string, int> A[3]; double a = 0; int u[5]; for(int i = 0; i < 5; i++){ cin >> str[i] >> coin[i]; } for(int i = 0; i < 3; i++){ cin >> n[i]; for(int j = 0; j < n[i]; j++){ string s; cin >> s; A[i][s]++; } } for(int i = 0; i < 5; i++){ string s = str[i]; u[i] = A[0][s] * A[1][s] * A[2][s] * 5; a += u[i] * coin[i]; } for(int i = 0; i < 3; i++){ a /= n[i]; } cout << a << endl; for(int i = 0; i < 5; i++){ cout << u[i] << endl; } return 0; }