結果

問題 No.1444 !Andd
ユーザー convexineqconvexineq
提出日時 2021-03-26 22:30:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-11-29 00:06:52
合計ジャッジ時間 6,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,112 KB
testcase_01 AC 47 ms
58,496 KB
testcase_02 AC 45 ms
58,112 KB
testcase_03 AC 140 ms
76,392 KB
testcase_04 AC 119 ms
75,988 KB
testcase_05 AC 164 ms
76,520 KB
testcase_06 AC 120 ms
76,032 KB
testcase_07 AC 109 ms
76,344 KB
testcase_08 AC 198 ms
76,784 KB
testcase_09 AC 143 ms
76,544 KB
testcase_10 AC 126 ms
76,476 KB
testcase_11 AC 141 ms
76,416 KB
testcase_12 AC 228 ms
76,376 KB
testcase_13 AC 293 ms
76,948 KB
testcase_14 AC 182 ms
76,652 KB
testcase_15 AC 286 ms
76,872 KB
testcase_16 AC 400 ms
77,824 KB
testcase_17 AC 284 ms
78,208 KB
testcase_18 AC 394 ms
77,824 KB
testcase_19 AC 400 ms
77,696 KB
testcase_20 AC 400 ms
77,908 KB
testcase_21 AC 397 ms
77,824 KB
testcase_22 AC 404 ms
77,912 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