結果

問題 No.1444 !Andd
ユーザー googol_S0googol_S0
提出日時 2021-03-26 21:48:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 780 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 398,856 KB
最終ジャッジ日時 2024-11-28 22:40:17
合計ジャッジ時間 10,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,368 KB
testcase_01 AC 38 ms
58,496 KB
testcase_02 AC 38 ms
58,680 KB
testcase_03 AC 213 ms
137,344 KB
testcase_04 AC 157 ms
114,304 KB
testcase_05 AC 284 ms
220,672 KB
testcase_06 AC 169 ms
129,916 KB
testcase_07 AC 146 ms
114,532 KB
testcase_08 AC 338 ms
203,392 KB
testcase_09 AC 225 ms
151,424 KB
testcase_10 AC 188 ms
159,616 KB
testcase_11 AC 227 ms
182,528 KB
testcase_12 AC 404 ms
228,224 KB
testcase_13 AC 559 ms
299,588 KB
testcase_14 AC 319 ms
251,264 KB
testcase_15 AC 530 ms
290,048 KB
testcase_16 AC 780 ms
398,720 KB
testcase_17 AC 552 ms
398,844 KB
testcase_18 AC 777 ms
398,848 KB
testcase_19 AC 768 ms
398,856 KB
testcase_20 AC 778 ms
398,848 KB
testcase_21 AC 769 ms
398,792 KB
testcase_22 AC 765 ms
398,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
DP=[[0]*2048 for j in range(N+1)]
DP[0][1]=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&=1023
      x+=1024
    if x>=1024:
      DP[i+1][x]+=DP[i][j]
    else:
      DP[i+1][x]=1
    DP[i+1][j&A[i]]=1
  print(sum(DP[i+1]))
0