結果
問題 | No.24 数当てゲーム |
ユーザー | sora410_t |
提出日時 | 2020-03-31 16:11:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 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 | 2 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 |
ソースコード
#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; }