teams.cpp: In function 'int main()':
teams.cpp:28:28: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
dp[i&1][j]=dp[i-1&1][j]*j+dp[i-1&1][j+1];
~^~
teams.cpp:28:43: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
dp[i&1][j]=dp[i-1&1][j]*j+dp[i-1&1][j+1];
~^~
teams.cpp:18:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &N);
~~~~~^~~~~~~~~~
teams.cpp:19:30: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
for(i=1; i<=N; i++) scanf("%d", &A[i]);
~~~~~^~~~~~~~~~~~~