結果

問題 No.24 数当てゲーム
ユーザー ミドリムシミドリムシ
提出日時 2017-10-14 15:26:55
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 828 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 56,624 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-28 19:33:14
合計ジャッジ時間 977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;
 
int main(){
	int N;
	cin >> N;
	int digits[N][4];
	bool if_YES[N];
	bool possibility[10];
	for(int i = 0; i < 10; i++){
		possibility[i] = true;
	}
	for(int i = 0; i < N; i++){
		cin >> digits[i][0];
		cin >> digits[i][1];
		cin >> digits[i][2];
		cin >> digits[i][3];
		string YES_NO;
		cin >> YES_NO;
		if(YES_NO == "YES"){
			if_YES[i] = true;
		}else{
			if_YES[i] = false;
		}
	}
	for(int i = 0; i < 10; i++){
		bool if_ok = true;
		for(int j = 0; j < N; j++){
			if(((digits[j][0] == i || digits[j][1] == i || digits[j][2] == i || digits[j][3] == i) && if_YES[i] == false) || ((digits[j][0] != i && digits[j][1] != i && digits[j][2] != i && digits[j][3] != i) && if_YES[i] == true)){
				if_ok = false;
				break;
			}
		}
		if(if_ok){
			cout << i << endl;
			return 0;
		}
	}
}
0