結果

問題 No.1109 調の判定
ユーザー Novi
提出日時 2020-07-11 13:48:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 1,488 ms
コンパイル使用メモリ 170,548 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-13 00:41:41
合計ジャッジ時間 2,593 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i=0; i<(n); i++)
#define REP2(i,x,n) for(int i=x; i<(n); i++)
#define ALL(n) begin(n),end(n)
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star;
const long long INF = numeric_limits<long long>::max();

bool judge(int d,int a){
    if (a==(d)%12|| a==(d+2)%12 || a==(d+4)%12 || a==(d+5)%12 || a==(d+7)%12 || a==(d+9)%12 || a==(d+11)%12){
        return true;
    }
    else{
    return false;
    }
}
int n;
int t[12];
int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    cin>>n;
    for(int i =0; i<n; i++){
        int v; cin >>v;
        t[i]=v;
    }
    vector<int> cnt;
    cnt.resize(0);
    for(int i=0; i<12; i++){
        int  ans=0;
        for (int j=0; j<n; j++){
            if(judge(i,t[j])){
                ans++;
            };
        }
        if (ans==n){
            cnt.emplace_back(i);
        }
    }
    if (cnt.size()==0|| cnt.size()>1){
        cout<<"-1"<<endl;
    }
    else{
        cout<<cnt[0]<<endl;
    }
    return 0;
}
0