結果

問題 No.24 数当てゲーム
ユーザー ytft
提出日時 2021-03-03 09:31:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 1,512 ms
コンパイル使用メモリ 167,468 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-03 03:07:53
合計ジャッジ時間 2,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    int n,a,b,c,d;
    string r;
    cin>>n;
    long long isOK=pow(2,10)-1;
    long long temp;
    for(int i=0;i<n;i++){
        cin>>a>>b>>c>>d>>r;
        if(r=="YES"){
            temp=pow(2,a)+pow(2,b)+pow(2,c)+pow(2,d);
        }else{
            temp=pow(2,10)-(pow(2,a)+pow(2,b)+pow(2,c)+pow(2,d)+1);
        }
        isOK=temp&isOK;
    }
    int ans=0;
    while(isOK%2==0){
        isOK=isOK/2;
        ans++;
    }
    cout<<ans<<endl;
}
0