結果
問題 | No.662 スロットマシーン |
ユーザー | 41Toame |
提出日時 | 2018-09-07 14:44:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,378 bytes |
コンパイル時間 | 1,393 ms |
コンパイル使用メモリ | 160,148 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-05 14:48:18 |
合計ジャッジ時間 | 5,793 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,448 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 17 ms
5,376 KB |
testcase_03 | AC | 584 ms
5,376 KB |
testcase_04 | AC | 220 ms
5,376 KB |
testcase_05 | AC | 41 ms
5,376 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define ll long long int #define rep(i,n) for( int i = 0; i < n; i++ ) #define rrep(i,n) for( int i = n; i >= 0; i-- ) #define REP(i,s,t) for( int i = s; i <= t; i++ ) #define RREP(i,s,t) for( int i = s; i >= t; i-- ) #define dump(x) cerr << #x << " = " << (x) << endl; #define INF 2000000000 #define mod 1000000007 #define INF2 1000000000000000000 int main(void) { cin.tie(0); ios::sync_with_stdio(false); string str[5]; int coin[5]; rep(i, 5) cin >> str[i] >> coin[i]; int n[3]; int A[3][5000]; rep(i, 3) { cin >> n[i]; rep(j, n[i]) { string S; cin >> S; rep(r, 5) if (S == str[r]) A[i][j] = r; } } int cnt[5] = {}; rep(i, n[0]) { rep(j, n[1]) { rep(k, n[2]) { int slot[3][3]; int ijk[3] = { i, j, k }; rep(s, 3) { rep(t, 3) { slot[s][t] = A[s][(ijk[s] + t) % n[s]]; } } rep(s, 3) { if (slot[0][s] == slot[1][s] && slot[1][s] == slot[2][s]) { cnt[slot[0][s]]++; } } if (slot[0][0] == slot[1][1] && slot[1][1] == slot[2][2]) { cnt[slot[0][0]]++; } if (slot[0][2] == slot[1][1] && slot[1][1] == slot[2][0]) { cnt[slot[0][2]]++; } } } } ll sum = 0; rep(i, 5) { sum += cnt[i] * coin[i]; } cout << sum / (double)(n[0] * n[1] * n[2]) << endl; rep(i, 5) { cout << cnt[i] << endl; } return 0; }