結果
問題 | No.2195 AND Set |
ユーザー | mushily |
提出日時 | 2023-03-16 05:54:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 676 bytes |
コンパイル時間 | 1,381 ms |
コンパイル使用メモリ | 72,528 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-18 09:11:46 |
合計ジャッジ時間 | 8,315 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 1,755 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
#include <iostream> #include <set> using namespace std; int main() { unsigned int q, i, t; long x; set<long> s; cin >> q; for (i = 0; i < q; i++) { cin >> t; switch (t) { case 1: cin >> x; s.insert(x); break; case 2: cin >> x; s.erase(x); break; default: if (s.size() > 0) { x = (long(1) << 31) - 1; for (auto itr : s) x = x & itr; } else x = -1; cout << x << endl; break; } } }