結果

問題 No.24 数当てゲーム
ユーザー ytftytft
提出日時 2021-03-03 09:31:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 1,855 ms
コンパイル使用メモリ 164,272 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-14 05:51:39
合計ジャッジ時間 2,405 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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