結果

問題 No.1876 Xor of Sum
ユーザー colognecologne
提出日時 2022-03-13 10:19:36
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 2,794 ms
コンパイル使用メモリ 122,496 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-17 20:04:09
合計ジャッジ時間 8,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 8 ms
6,940 KB
testcase_03 AC 115 ms
6,940 KB
testcase_04 AC 194 ms
6,944 KB
testcase_05 AC 29 ms
6,944 KB
testcase_06 AC 269 ms
6,940 KB
testcase_07 AC 33 ms
6,940 KB
testcase_08 AC 29 ms
6,944 KB
testcase_09 AC 179 ms
6,940 KB
testcase_10 AC 97 ms
6,940 KB
testcase_11 AC 234 ms
6,944 KB
testcase_12 AC 112 ms
6,940 KB
testcase_13 AC 177 ms
6,940 KB
testcase_14 AC 145 ms
6,944 KB
testcase_15 AC 154 ms
6,940 KB
testcase_16 AC 24 ms
6,940 KB
testcase_17 AC 239 ms
6,940 KB
testcase_18 AC 265 ms
6,944 KB
testcase_19 AC 268 ms
6,940 KB
testcase_20 AC 268 ms
6,940 KB
testcase_21 AC 270 ms
6,940 KB
testcase_22 AC 271 ms
6,940 KB
testcase_23 AC 268 ms
6,940 KB
testcase_24 AC 265 ms
6,944 KB
testcase_25 AC 270 ms
6,940 KB
testcase_26 AC 265 ms
6,948 KB
testcase_27 AC 270 ms
6,940 KB
testcase_28 AC 283 ms
6,944 KB
testcase_29 AC 273 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bitset>
#include <iostream>
#include <vector>

using namespace std;
using Line = bitset<2000 * 2000 + 1>;
int main()
{
    int N;
    cin >> N;
    Line l = 0;
    l[0] = 1;
    for (int i = 0; i < N; i++)
    {
        int a;
        cin >> a;
        l ^= l << a;
    }
    int ans = 0;
    for (int i = 0; i < (int)l.size(); i++)
    {
        if (l[i])
            ans ^= i;
    }
    cout << ans << endl;
}
0