結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー solzardsolzard
提出日時 2019-08-07 14:12:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 694 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-07-02 15:48:21
合計ジャッジ時間 5,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,240 KB
testcase_01 AC 42 ms
57,472 KB
testcase_02 AC 40 ms
58,368 KB
testcase_03 AC 40 ms
58,368 KB
testcase_04 AC 42 ms
57,984 KB
testcase_05 AC 39 ms
58,240 KB
testcase_06 AC 37 ms
57,856 KB
testcase_07 AC 694 ms
62,976 KB
testcase_08 AC 531 ms
62,208 KB
testcase_09 AC 400 ms
62,208 KB
testcase_10 AC 461 ms
62,336 KB
testcase_11 AC 583 ms
62,336 KB
testcase_12 AC 41 ms
58,624 KB
testcase_13 AC 37 ms
57,984 KB
testcase_14 AC 42 ms
59,392 KB
testcase_15 AC 593 ms
62,720 KB
testcase_16 AC 43 ms
58,496 KB
testcase_17 AC 183 ms
61,184 KB
testcase_18 AC 596 ms
62,336 KB
testcase_19 AC 116 ms
60,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.183 たのしい排他的論理和(EASY)
# cf. AtCoder tdpcA - コンテスト
def main():
    _ = input()
    A = set(map(int, input().rstrip().split()))
    N = len(A)
    lim = 2 ** 15
    dp = [0] * (lim + 1)
    dp[0] = 1
    for i in A:
        for j in range(lim, -1, -1):
            if i == j:
                dp[i] = 1
            elif dp[j]:
                dp[i ^ j] = 1
    print(sum(dp))


if __name__ == "__main__":
    main()
0