結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tookunn_1213tookunn_1213
提出日時 2017-01-04 21:44:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,720 KB
最終ジャッジ日時 2024-12-16 08:49:14
合計ジャッジ時間 10,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
58,496 KB
testcase_01 AC 55 ms
58,240 KB
testcase_02 AC 54 ms
59,008 KB
testcase_03 AC 53 ms
59,264 KB
testcase_04 AC 50 ms
58,112 KB
testcase_05 AC 53 ms
58,880 KB
testcase_06 AC 50 ms
57,856 KB
testcase_07 WA -
testcase_08 AC 1,168 ms
62,592 KB
testcase_09 AC 813 ms
61,952 KB
testcase_10 AC 969 ms
62,464 KB
testcase_11 AC 1,261 ms
62,208 KB
testcase_12 WA -
testcase_13 AC 48 ms
57,216 KB
testcase_14 AC 397 ms
62,336 KB
testcase_15 AC 1,296 ms
62,720 KB
testcase_16 AC 52 ms
59,136 KB
testcase_17 AC 335 ms
61,568 KB
testcase_18 WA -
testcase_19 AC 184 ms
60,672 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