結果
問題 | No.662 スロットマシーン |
ユーザー | polylogK |
提出日時 | 2018-03-09 22:33:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,949 bytes |
コンパイル時間 | 1,675 ms |
コンパイル使用メモリ | 176,352 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 05:31:18 |
合計ジャッジ時間 | 2,408 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 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,248 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <bits/stdc++.h> #define pq priority_queue #define P pair<int, int> #define P2 pair<int, P> #define P3 pair<int, P2> using namespace std; typedef long long ll; typedef long double ld; constexpr long long gcd(long long a, long long b){return b ? gcd(b, a % b) : a;} constexpr long long lcm(long long a, long long b){return a / gcd(a, b) * b;} constexpr int INF = 1e9, MOD = INF + 7, around[] = {0, 1, 1, -1, -1, 0, -1, 1, 0, 0}; constexpr int mod_pow(long long x, long long n, const int mod){long long ret=1;while(n){if(n&1)(ret*=x)%=mod;(x*=x)%=mod;n>>=1;}return ret;} template<int n> struct Prime{bool arr[n+1];constexpr bool operator[](int k){return arr[k];}constexpr Prime():arr(){for(int i=2;i<n;i++){arr[i]=true;for(int j=2;j*j<=i;j++){if(!(i%j))arr[i]=false;}}}}; template<int n> struct Factorial{long long arr[n+1],ary[n+1];constexpr Factorial():arr(),ary(){arr[0]=1;ary[0]=1;for(int i=0;i<n;i++){arr[i+1]=arr[i]*(i+1)%MOD;ary[i+1]=mod_pow(arr[i+1],MOD-2,MOD);}}}; constexpr Factorial<10> fact; constexpr Prime<10> prime; constexpr int comb(int a, int b){long long pos = fact.arr[a], pot = fact.ary[a - b], por = fact.ary[b];return pos * pot % MOD * por % MOD;} constexpr int vx[] = {1, 0, -1, 0}, vy[] = {0, 1, 0, -1}; constexpr int sqrtN = 512, logN = 32; constexpr ld PI = abs(acos(-1)); constexpr ll LINF=1e18; int main(){ map<string, int> mp2; int a[5]; for(int i = 0; i < 5; i++){ string s; cin >> s >> a[i]; mp2[s] = i; } ld t = 1; int li[3][5] = {}; for(int S = 0; S < 3; S++){ int n; cin >> n; t *= n; for(int i = 0; i < n; i++){ string s; cin >> s; li[S][mp2[s]]++; } } int ans[5] = {}; for(int i = 0; i < 5; i++){ int ret = 5; for(int j = 0; j < 3; j++){ ret *= li[j][i]; } ans[i] = ret; } ld s = 0; for(int i = 0; i < 5; i++) s += ans[i] * a[i]; cout << fixed << setprecision(10); cout << s / t << endl; for(int i = 0; i < 5; i++) cout << ans[i] << endl; return 0; }