結果

問題 No.24 数当てゲーム
ユーザー MoonlightSonataMoonlightSonata
提出日時 2019-08-31 15:19:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,794 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 204,152 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 16:30:14
合計ジャッジ時間 2,765 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
//#pragma GCC optimize ("-O3")
using ll = long long;
const char alphabet[26] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
const ll MOD = (ll) 1e9 + 7;
const int MAX_INT = 1 << 17;
const ll INFL = 1LL << 60;

const ll MAX_V = 1010;
const ll MAX_E = 2010;
ll V, E;
struct edge {
    ll from, to, cost;
};
edge ES[MAX_E];
ll d[MAX_V];

#define ALL(obj) (obj).begin(),(obj).end()
#define RALL(obj) (obj).rbegin(),(obj).rend()
#define PRINT(n) cout << n << "\n";
#define PRINT2(n, m) cout << n << " " << m << " "<< "\n";

// REP(i,n)   -- 0 - n-1 ++
#define REP(i,n)  for(int i=0;i<(int)n;++i)
// RREP(i,n)  -- n-1 - 0 --
#define RREP(i,n) for(int i =(int)n;i>0;--i)
// rep(i,a,b) -- a - b-1 ++
#define rep(i,a,b) for(int i=a;i<b;i++)
// rrep(i,a,b)-- a - b   --
#define rrep(i,a,b) for(int i=a;i>=b;i--)

// 0 - 2^(n-1)
#define REPbit(bit, n)  for(int bit = 0; bit < (int)(1<<n); ++bit)
#define FOR(i,a,b)  for(int i=a; i<=(int)b; ++i)
void no24();
int main() {cin.tie(0); ios::sync_with_stdio(false); no24();}

/********************************/
/** yukicoder No.24            **/
/** by MoonlightSonata         **/
/********************************/

void no24(){
    int n;
    cin >> n;
    vector<int> a(4, 0);
    vector<string> r(n, "");
    vector<int> acc(10, 0);

    REP(i, n){
        cin >> a[0] >> a[1] >> a[2] >> a[3] >> r[i];
        if (r[i] == "NO") {
            REP(i, 4)
                acc[a[i]] += 1;
        } else {
            REP(i, 4)
                acc[a[i]] -= 1;
        }
    }
    int tmp = 1<<10, idx = 0;
    FOR(i,0,9){
        if (tmp > acc[i]){
            tmp = acc[i];
            idx = i;
        }
    }
    PRINT(idx)
}
0