結果

問題 No.1443 Andd
ユーザー convexineqconvexineq
提出日時 2021-03-26 22:23:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-05-06 16:05:07
合計ジャッジ時間 5,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,624 KB
testcase_01 AC 43 ms
58,880 KB
testcase_02 AC 44 ms
58,752 KB
testcase_03 AC 69 ms
72,704 KB
testcase_04 AC 80 ms
76,416 KB
testcase_05 AC 73 ms
73,984 KB
testcase_06 AC 68 ms
72,576 KB
testcase_07 AC 83 ms
75,904 KB
testcase_08 AC 77 ms
76,160 KB
testcase_09 AC 49 ms
62,080 KB
testcase_10 AC 82 ms
76,160 KB
testcase_11 AC 80 ms
76,032 KB
testcase_12 AC 81 ms
76,160 KB
testcase_13 AC 166 ms
76,288 KB
testcase_14 AC 166 ms
76,544 KB
testcase_15 AC 167 ms
76,160 KB
testcase_16 AC 165 ms
76,416 KB
testcase_17 AC 162 ms
76,672 KB
testcase_18 AC 470 ms
77,952 KB
testcase_19 AC 469 ms
77,696 KB
testcase_20 AC 475 ms
77,696 KB
testcase_21 AC 477 ms
78,080 KB
testcase_22 AC 476 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
M = 1024
dp = [0]*(2*M)
dp[0] = 1
for ai in a:
    ndp = [0]*(2*M)
    for i in range(M):
        ndp[i+ai] |= dp[i]
        ndp[i&ai] |= dp[i]
    for i in range(M,2*M):
        if dp[i]:
            ndp[M+(i+ai)%M] += dp[i]
            ndp[i&ai] |= 1
    dp = ndp
    print(sum(dp))
0