結果

問題 No.1443 Andd
ユーザー googol_S0googol_S0
提出日時 2021-03-26 21:39:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 950 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 399,224 KB
最終ジャッジ日時 2024-05-06 14:59:22
合計ジャッジ時間 8,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,240 KB
testcase_01 AC 44 ms
58,112 KB
testcase_02 AC 43 ms
58,624 KB
testcase_03 AC 74 ms
73,472 KB
testcase_04 AC 101 ms
89,712 KB
testcase_05 AC 79 ms
74,224 KB
testcase_06 AC 73 ms
72,960 KB
testcase_07 AC 97 ms
89,424 KB
testcase_08 AC 95 ms
87,808 KB
testcase_09 AC 53 ms
63,104 KB
testcase_10 AC 106 ms
92,160 KB
testcase_11 AC 103 ms
90,484 KB
testcase_12 AC 101 ms
90,112 KB
testcase_13 AC 281 ms
157,036 KB
testcase_14 AC 278 ms
156,896 KB
testcase_15 AC 276 ms
156,928 KB
testcase_16 AC 280 ms
156,800 KB
testcase_17 AC 279 ms
156,872 KB
testcase_18 AC 935 ms
398,720 KB
testcase_19 AC 927 ms
399,224 KB
testcase_20 AC 949 ms
398,848 KB
testcase_21 AC 937 ms
398,804 KB
testcase_22 AC 950 ms
398,720 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