結果

問題 No.24 数当てゲーム
ユーザー KKT89KKT89
提出日時 2020-03-08 05:47:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 721 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-06 08:44:09
合計ジャッジ時間 1,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long int ll;

int aa[10];

int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int n; cin >> n;
	for(int i=0;i<n;i++){
		int a,b,c,d; cin >> a >> b >> c >> d;
		string s; cin >> s;
		if(s=="NO"){
			aa[a]++;
			aa[b]++;
			aa[c]++;
			aa[d]++;
		}
	}
	for(int i=0;i<10;i++){
		if(aa[i]==0){
			cout << i << endl;
		}
	}
}
0