結果

問題 No.1443 Andd
ユーザー googol_S0googol_S0
提出日時 2021-03-26 21:39:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 947 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 398,992 KB
最終ジャッジ日時 2024-11-28 22:19:57
合計ジャッジ時間 8,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,124 KB
testcase_01 AC 41 ms
58,780 KB
testcase_02 AC 39 ms
59,264 KB
testcase_03 AC 65 ms
73,404 KB
testcase_04 AC 91 ms
89,748 KB
testcase_05 AC 68 ms
74,200 KB
testcase_06 AC 66 ms
72,688 KB
testcase_07 AC 88 ms
89,132 KB
testcase_08 AC 86 ms
88,212 KB
testcase_09 AC 48 ms
62,976 KB
testcase_10 AC 99 ms
92,032 KB
testcase_11 AC 91 ms
90,752 KB
testcase_12 AC 89 ms
90,444 KB
testcase_13 AC 269 ms
157,056 KB
testcase_14 AC 270 ms
156,672 KB
testcase_15 AC 274 ms
156,544 KB
testcase_16 AC 267 ms
156,672 KB
testcase_17 AC 270 ms
156,928 KB
testcase_18 AC 938 ms
398,720 KB
testcase_19 AC 938 ms
398,720 KB
testcase_20 AC 947 ms
398,604 KB
testcase_21 AC 929 ms
398,908 KB
testcase_22 AC 942 ms
398,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
DP=[[0]*2048 for j in range(N+1)]
DP[0][0]=1
for i in range(N):
  for j in range(2048):
    if DP[i][j]==0:
      continue
    x=j+A[i]
    if x>=2048:
      x-=1024
    DP[i+1][x]+=DP[i][j]
    DP[i+1][j&A[i]]=1
  print(sum(DP[i+1]))
0