結果

問題 No.662 スロットマシーン
ユーザー yuruhiyayuruhiya
提出日時 2020-03-04 22:32:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,128 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 63,416 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 22:10:58
合計ジャッジ時間 1,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC target("avx")
#pragma GCC optimize("Ofast")
#include <cctype>
#include <cstdio>
#include <string>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)

#define gc getchar_unlocked
//#define gc _getchar_nolock

inline void input(string& v) noexcept {
  for (char c = gc(); !isspace(c); c = gc()) v += c;
}
inline void input(int& v) noexcept {
  v = 0;
  char c = gc();
  for (; isdigit(c); c = gc()) {
    v *= 10;
    v += c - '0';
  }
}
inline void input(long long& v) noexcept {
  v = 0;
  char c = gc();
  for (; isdigit(c); c = gc()) {
    v *= 10;
    v += c - '0';
  }
}

string str[5];
long long coin[5], cnt[5];
int n[3];

int main() {
  rep(i, 5) {
    input(str[i]);
    input(coin[i]);
    cnt[i] = 5;
  }
  rep(i, 3) {
    input(n[i]);
    int cnt2[5] = {};
    rep(j, n[i]) {
      string s;
      input(s);
      rep(k, 5) if (str[k] == s)++ cnt2[k];
    }
    rep(j, 5) { cnt[j] *= cnt2[j]; }
  }

  long long a1 = 0, a2 = 1;
  rep(i, 5) a1 += cnt[i] * coin[i];
  rep(i, 3) a2 *= n[i];
  printf("%f\n", 1.0 * a1 / a2);
  rep(i, 5) printf("%lld\n", cnt[i]);
}
0