結果

問題 No.1443 Andd
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-26 22:13:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 205 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 292,856 KB
最終ジャッジ日時 2024-05-06 15:50:04
合計ジャッジ時間 15,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
56,832 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 733 ms
172,480 KB
testcase_04 AC 1,586 ms
259,632 KB
testcase_05 AC 760 ms
164,532 KB
testcase_06 AC 602 ms
149,232 KB
testcase_07 AC 1,387 ms
217,064 KB
testcase_08 AC 1,040 ms
194,196 KB
testcase_09 AC 66 ms
74,880 KB
testcase_10 TLE -
testcase_11 AC 1,527 ms
236,880 KB
testcase_12 AC 1,654 ms
261,016 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

dp = set()
dp.add(0)
for a in A:
    nx = set()
    for x in dp:
        nx.add(x+a)
        nx.add(x&a)
    dp = nx
    #print(dp)
    print(len(dp))
0