はまやんはまやんはまやん

hamayanhamayan's blog

Welcome [yukicoder 1182]

https://yukicoder.me/problems/no/1182

解説

https://yukicoder.me/submissions/537274

Writer, Testerは以下の方々。順は適当です。

  • defineさん
  • Thistleさん
  • capra314cabraさん
  • sanada_atcoderさん
  • penguinmanさん
  • kaageさん
  • Rhoさん
  • AndrewKさん
  • NatsubiSoganさん
  • seven_threeさん
  • Forestedさん
  • Ebishuさん
  • aspiさん

ランダムでどなたかの名前が出るようになっている。

vector<string> heros = { "define", "Thistle", "capra314cabra", "sanada_atcoder", "penguinman", "kaage", "Rho", "AndrewK", "NatsubiSogan", "seven_three", "Forested", "Ebishu", "aspi" };
//---------------------------------------------------------------------------------------------------
void _main() {
    int n = heros.size();
    cout << heros[getrand(0, n - 1)] << endl;
}