#include using namespace std; int main(){ int n; cin>>n; vector a(n),b(n); for(auto&ai:a)cin>>ai; for(auto&bi:b)cin>>bi; int pmax=-1,ans=0; sort(begin(a),end(a)); do{ int p=0; for(int i=0;ib[i]){ p+=a[i]-b[i]; } if(p>pmax){ pmax=p; ans=1; } else if(p==pmax)ans++; }while(next_permutation(begin(a),end(a))); cout<