結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ttrttr
提出日時 2020-02-01 19:08:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,535 ms / 5,000 ms
コード長 329 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 66,688 KB
最終ジャッジ日時 2024-07-02 23:47:51
合計ジャッジ時間 15,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,208 KB
testcase_01 AC 44 ms
61,952 KB
testcase_02 AC 49 ms
63,616 KB
testcase_03 AC 46 ms
62,848 KB
testcase_04 AC 41 ms
61,952 KB
testcase_05 AC 50 ms
63,488 KB
testcase_06 AC 47 ms
62,208 KB
testcase_07 AC 2,535 ms
65,536 KB
testcase_08 AC 1,693 ms
66,176 KB
testcase_09 AC 1,162 ms
65,920 KB
testcase_10 AC 1,401 ms
65,920 KB
testcase_11 AC 1,856 ms
66,560 KB
testcase_12 AC 49 ms
63,360 KB
testcase_13 AC 43 ms
61,056 KB
testcase_14 AC 750 ms
65,536 KB
testcase_15 AC 1,886 ms
66,688 KB
testcase_16 AC 46 ms
62,848 KB
testcase_17 AC 454 ms
66,304 KB
testcase_18 AC 2,100 ms
65,792 KB
testcase_19 AC 248 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]

M = 2**15
dp = [[False]*2 for _ in range(M)]
dp[0][0] = True
for i in range(N):
    for j in range(M):
        if dp[j][i%2]:
            dp[j][(i+1)%2] = True
            dp[j^A[i]][(i+1)%2] = True

ans = 0
for i in range(M):
    if dp[i][N%2]:
        ans += 1
print(ans)
0