結果

問題 No.1109 調の判定
ユーザー beet
提出日時 2020-07-10 21:25:40
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 1,865 ms
コンパイル使用メモリ 200,836 KB
最終ジャッジ日時 2025-01-11 17:46:33
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
using Int = long long;
const char newl = '\n';


template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);}

//INSERT ABOVE HERE
signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  Int n;
  cin>>n;
  vector<Int> ts(n);
  for(Int i=0;i<n;i++) cin>>ts[i];

  Int cnt=0,sum=0;
  for(Int d=0;d<12;d++){
    set<Int> tt;
    tt.emplace((d+0)%12);
    tt.emplace((d+2)%12);
    tt.emplace((d+4)%12);
    tt.emplace((d+5)%12);
    tt.emplace((d+7)%12);
    tt.emplace((d+9)%12);
    tt.emplace((d+11)%12);

    Int flg=1;
    for(Int t:ts)
      flg&=tt.count(t);
    if(flg) cnt++,sum+=d;
  }

  if(cnt!=1) drop(-1);
  cout<<sum<<newl;
  return 0;
}
0