#include #define cinf(n,x) for(int i=0;i<(n);i++)cin>>x[i]; #define ft first #define sc second #define pb push_back #define lb lower_bound #define ub upper_bound #define all(v) (v).begin(),(v).end() #define LB(a,x) lb(all(a),x)-a.begin() #define UB(a,x) ub(all(a),x)-a.begin() #define mod 1000000007 #define FS fixed< using V=vector; using Graph = vector>; using P=pair; typedef unsigned long long ull; typedef long double ldouble; template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } const ll INF=1e18; int main(){ cin.tie(0);ios::sync_with_stdio(false); int n; cin>>n; V t(n); V b={0,2,4,5,7,9,11}; cinf(n,t); set ans; rep(i,12){ set st; rep(j,n)st.insert(t[j]); for(int bb:b){ int x=(bb+i)%12; if(st.count(x))st.erase(x); } if(st.empty())ans.insert(i); } if(ans.size()==1)cout<<*begin(ans)< a(m)でm==0というものはできない) modはなるべく最後に取れ! doubleを扱うときには(abs)ではなく'fabs'!!! */