結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー nanaenanae
提出日時 2017-02-10 12:26:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 260,096 KB
最終ジャッジ日時 2024-06-08 01:18:33
合計ジャッジ時間 17,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,992 KB
testcase_01 AC 44 ms
60,672 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2,763 ms
259,712 KB
testcase_08 AC 1,807 ms
260,096 KB
testcase_09 AC 1,263 ms
258,940 KB
testcase_10 AC 1,535 ms
259,784 KB
testcase_11 AC 1,898 ms
258,304 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 944 ms
258,304 KB
testcase_15 AC 1,944 ms
258,432 KB
testcase_16 WA -
testcase_17 AC 656 ms
259,968 KB
testcase_18 AC 2,246 ms
259,456 KB
testcase_19 AC 382 ms
200,448 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][a ^ j] = True
        dp[0] = dp[1][:]

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

    print(ans)

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