結果

問題 No.1443 Andd
ユーザー convexineqconvexineq
提出日時 2021-03-26 22:23:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-11-28 23:55:02
合計ジャッジ時間 5,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,368 KB
testcase_01 AC 47 ms
58,752 KB
testcase_02 AC 49 ms
58,752 KB
testcase_03 AC 80 ms
72,832 KB
testcase_04 AC 91 ms
75,904 KB
testcase_05 AC 85 ms
74,368 KB
testcase_06 AC 78 ms
72,576 KB
testcase_07 AC 90 ms
76,288 KB
testcase_08 AC 88 ms
75,904 KB
testcase_09 AC 56 ms
62,336 KB
testcase_10 AC 94 ms
75,904 KB
testcase_11 AC 92 ms
76,288 KB
testcase_12 AC 93 ms
76,416 KB
testcase_13 AC 187 ms
76,416 KB
testcase_14 AC 187 ms
76,288 KB
testcase_15 AC 185 ms
76,160 KB
testcase_16 AC 187 ms
76,544 KB
testcase_17 AC 185 ms
76,416 KB
testcase_18 AC 527 ms
77,696 KB
testcase_19 AC 526 ms
77,952 KB
testcase_20 AC 525 ms
78,336 KB
testcase_21 AC 526 ms
77,696 KB
testcase_22 AC 526 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