結果

問題 No.24 数当てゲーム
ユーザー sora410_tsora410_t
提出日時 2020-03-31 16:11:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 665 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 78,436 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 19:27:17
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <climits>
#include <numeric>
#include <iterator>
#include <cmath>
#include <set>
#include <bitset>
#include <cassert>
using namespace std;

int main() {
	bitset<10> res {};
	res.set();
	
	int N {};
	cin >> N;

	for (int i = 0; i < N; ++i) {
		bitset<10> tmp {};
		for (int j = 0; j < 4; ++j) {
			int d {};
			cin >> d;
			tmp.set(d);
		}
		string flag {};
		cin >> flag;
		if (flag == "YES") {
			res &= tmp;
		} else {
			res &= ~tmp;
		}
	}
	assert(res.count() == 1);
	for (int k = 0; k < 10; ++k) {
		if (res[k] == 1) {
			cout << k << endl;
			return 0;
		}
	}
	return 1;
}
0