結果

問題 No.1444 !Andd
ユーザー googol_S0googol_S0
提出日時 2021-03-26 21:48:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 887 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 399,120 KB
最終ジャッジ日時 2024-05-06 15:13:13
合計ジャッジ時間 11,709 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,980 KB
testcase_01 AC 43 ms
58,944 KB
testcase_02 AC 45 ms
58,996 KB
testcase_03 AC 243 ms
137,564 KB
testcase_04 AC 176 ms
114,308 KB
testcase_05 AC 322 ms
220,784 KB
testcase_06 AC 200 ms
129,684 KB
testcase_07 AC 174 ms
114,448 KB
testcase_08 AC 388 ms
203,700 KB
testcase_09 AC 256 ms
151,660 KB
testcase_10 AC 224 ms
159,828 KB
testcase_11 AC 265 ms
182,780 KB
testcase_12 AC 459 ms
228,460 KB
testcase_13 AC 634 ms
299,584 KB
testcase_14 AC 381 ms
251,008 KB
testcase_15 AC 614 ms
290,440 KB
testcase_16 AC 875 ms
398,772 KB
testcase_17 AC 635 ms
398,932 KB
testcase_18 AC 882 ms
398,764 KB
testcase_19 AC 883 ms
398,992 KB
testcase_20 AC 877 ms
398,780 KB
testcase_21 AC 887 ms
398,788 KB
testcase_22 AC 881 ms
399,120 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