結果
問題 | No.1443 Andd |
ユーザー | first_vil |
提出日時 | 2021-01-23 15:56:51 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 763 bytes |
コンパイル時間 | 343 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 79,044 KB |
最終ジャッジ日時 | 2024-06-09 21:19:07 |
合計ジャッジ時間 | 8,962 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
67,080 KB |
testcase_01 | AC | 37 ms
59,224 KB |
testcase_02 | AC | 42 ms
60,208 KB |
testcase_03 | AC | 371 ms
67,948 KB |
testcase_04 | AC | 543 ms
67,752 KB |
testcase_05 | AC | 413 ms
67,956 KB |
testcase_06 | AC | 322 ms
66,460 KB |
testcase_07 | AC | 510 ms
67,516 KB |
testcase_08 | AC | 450 ms
66,872 KB |
testcase_09 | AC | 75 ms
65,356 KB |
testcase_10 | AC | 578 ms
67,840 KB |
testcase_11 | AC | 579 ms
67,048 KB |
testcase_12 | AC | 615 ms
67,584 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
def main(): kC=1<<14 import sys input=sys.stdin.readline n=int(input()) a=list(map(int,input().split())) now=[[False]*kC for _ in range(2)] dp=[[False]*kC for _ in range(2)] now[0][0]=True rkC=range(kC) ans=1 output=[] for i in range(1,n+1): for j in rkC: dp[i&1][j]=False now[i&1][j]=False if now[~i&1][j]: dp[i&1][j&a[i-1]]=True for j in rkC: if now[~i&1][j]: now[i&1][(j+a[i-1])&(kC-1)]=True if dp[i&1][j]: ans+=1 now[i&1][j]=True if now[~i&1][0] and dp[i&1][a[i-1]]: ans-=1 output.append(str(ans)) print('\n'.join(output)) main()