結果
問題 | No.24 数当てゲーム |
ユーザー | タキノボリ |
提出日時 | 2019-02-18 14:16:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 748 bytes |
コンパイル時間 | 656 ms |
コンパイル使用メモリ | 64,744 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 03:05:53 |
合計ジャッジ時間 | 1,116 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <array> int main() { int n; std::cin >> n; std::vector<std::array<int, 4>> num; std::vector<std::string> S; num.resize(n); S.resize(n); for (int i = 0; i < n; i++) { for (int j = 0; j < 4; j++) { std::cin >> num[i][j]; } std::cin >> S[i]; } std::array<int, 10> Result = { 0 }; for (int i = 0; i < n; i++) { for (int j = 0; j < 4; j++) { if (S[i] == "YES") { if (Result[num[i][j]] != -1) { Result[num[i][j]]++; } } else { Result[num[i][j]] = -1; } } } int answer = 0; for (int i = 0; i < 10; i++) { if (Result[answer] < Result[i]) { answer = i; } } std::cout << answer << std::endl; return 0; }