結果

問題 No.1444 !Andd
ユーザー convexineqconvexineq
提出日時 2021-03-26 22:30:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,228 KB
最終ジャッジ日時 2024-05-06 16:14:50
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,240 KB
testcase_01 AC 44 ms
58,368 KB
testcase_02 AC 44 ms
58,368 KB
testcase_03 AC 145 ms
76,032 KB
testcase_04 AC 118 ms
76,416 KB
testcase_05 AC 162 ms
77,056 KB
testcase_06 AC 119 ms
76,032 KB
testcase_07 AC 106 ms
76,160 KB
testcase_08 AC 197 ms
76,488 KB
testcase_09 AC 140 ms
76,544 KB
testcase_10 AC 124 ms
76,672 KB
testcase_11 AC 140 ms
76,516 KB
testcase_12 AC 220 ms
77,056 KB
testcase_13 AC 293 ms
76,928 KB
testcase_14 AC 182 ms
77,056 KB
testcase_15 AC 275 ms
77,196 KB
testcase_16 AC 386 ms
78,228 KB
testcase_17 AC 286 ms
78,116 KB
testcase_18 AC 389 ms
78,208 KB
testcase_19 AC 393 ms
77,696 KB
testcase_20 AC 388 ms
77,828 KB
testcase_21 AC 387 ms
77,972 KB
testcase_22 AC 395 ms
78,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
M = 1024
dp = [0]*(2*M)
dp[1] = 1
for ai in a:
    if ai == 0:
        dp = [0]*(2*M)
        dp[0] = 1
        print(1)
        continue

    ndp = [0]*(2*M)
    for i in range(M):
        if dp[i]==0: continue
        ndp[i&ai] |= 1
        if i*ai < M:
            ndp[i*ai] |= 1
        else:
            ndp[M+(i*ai)%M] += 1
    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