結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tookunn_1213tookunn_1213
提出日時 2017-01-04 21:44:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-05-09 17:45:00
合計ジャッジ時間 8,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,368 KB
testcase_01 AC 43 ms
58,496 KB
testcase_02 AC 44 ms
59,008 KB
testcase_03 AC 42 ms
59,264 KB
testcase_04 AC 41 ms
58,240 KB
testcase_05 AC 42 ms
59,008 KB
testcase_06 AC 39 ms
58,112 KB
testcase_07 WA -
testcase_08 AC 1,027 ms
62,208 KB
testcase_09 AC 721 ms
61,952 KB
testcase_10 AC 891 ms
62,080 KB
testcase_11 AC 1,125 ms
62,336 KB
testcase_12 WA -
testcase_13 AC 44 ms
57,856 KB
testcase_14 AC 345 ms
62,208 KB
testcase_15 AC 1,142 ms
62,592 KB
testcase_16 AC 45 ms
59,264 KB
testcase_17 AC 285 ms
61,696 KB
testcase_18 WA -
testcase_19 AC 159 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(i) for i in input().split()]
dp = [[0]*((1<<14)+1)]*(N+1)
dp[0][0]=1
for i in range(N):
	for j in range((1<<14)+1):
		if dp[i][j]:
			dp[i+1][(j^A[i])%((1<<14)+1)]=1
			dp[i+1][j]=1
print(sum(dp[N]))
0