密码锁
#include<iostream>
using namespace std;
int n;
int a, b, c, aa, bb, cc;
bool check(int x, int y)
{
if(abs(x - y) <= 2 || abs(x - y) >= n - 2)return true;
else return false;
}
int main()
{
cin >>n;
cin >> a >> b >> c >> aa >> bb >> cc;
int ans = 0;
for(int i = 1; i <= n; i ++)
{
for(int j = 1; j <= n; j ++)
{
for(int k = 1; k <= n; k ++)
{
if(check(i, a) && check(j, b) && check(k , c) || check(i , aa) && check(j , bb) && check(k , cc)){
ans ++;
}
}
}
}
cout << ans <<endl;
}