結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | tnodino |
提出日時 | 2022-07-07 17:55:27 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 255 bytes |
コンパイル時間 | 237 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 851,456 KB |
最終ジャッジ日時 | 2024-06-06 23:52:11 |
合計ジャッジ時間 | 3,399 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
59,392 KB |
testcase_01 | AC | 44 ms
59,904 KB |
testcase_02 | AC | 48 ms
62,336 KB |
testcase_03 | AC | 46 ms
61,952 KB |
testcase_04 | AC | 42 ms
59,520 KB |
testcase_05 | AC | 50 ms
62,720 KB |
testcase_06 | AC | 43 ms
60,160 KB |
testcase_07 | MLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
M = 2**15 N = int(input()) A = list(map(int,input().split())) DP = [[0] * (M+1) for _ in range(N+1)] DP[0][0] = 1 for i in range(N): for j in range(M+1): if DP[i][j]: DP[i+1][j] = 1 DP[i+1][j^A[i]] = 1 print(sum(DP[N]))