結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー nanaenanae
提出日時 2017-02-10 12:28:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,972 ms / 5,000 ms
コード長 594 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 259,820 KB
最終ジャッジ日時 2024-06-29 23:45:46
合計ジャッジ時間 18,414 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,648 KB
testcase_01 AC 42 ms
60,928 KB
testcase_02 AC 45 ms
63,008 KB
testcase_03 AC 46 ms
62,336 KB
testcase_04 AC 37 ms
60,160 KB
testcase_05 AC 42 ms
63,104 KB
testcase_06 AC 38 ms
61,312 KB
testcase_07 AC 2,972 ms
258,184 KB
testcase_08 AC 1,989 ms
258,432 KB
testcase_09 AC 1,477 ms
259,820 KB
testcase_10 AC 1,773 ms
259,740 KB
testcase_11 AC 2,167 ms
259,456 KB
testcase_12 AC 45 ms
64,000 KB
testcase_13 AC 37 ms
59,136 KB
testcase_14 AC 947 ms
258,524 KB
testcase_15 AC 2,242 ms
259,820 KB
testcase_16 AC 43 ms
62,612 KB
testcase_17 AC 675 ms
259,552 KB
testcase_18 AC 2,489 ms
258,944 KB
testcase_19 AC 392 ms
200,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

def solve():
    N = int(input())
    As = [int(i) for i in input().split()]
    dp = [[False]*(2**15) for i in range(2)]
    dp[0][0] = True

    for a in As:
        for j in range(2**15):
            if dp[0][j] == True:
                dp[1][j] = True
                dp[1][a ^ j] = True
        dp[0] = dp[1][:]

    ans = sum(i for i in dp[1][:])

    print(ans)

if __name__ == '__main__':
    solve()
0