結果
| 問題 | No.24 数当てゲーム |
| コンテスト | |
| ユーザー |
Eclair1015
|
| 提出日時 | 2018-09-03 00:46:51 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 926 bytes |
| 記録 | |
| コンパイル時間 | 744 ms |
| コンパイル使用メモリ | 68,692 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-04 08:49:51 |
| 合計ジャッジ時間 | 1,371 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 WA * 7 |
ソースコード
//inlclude前用define
#define _USE_MATH_DEFINES
//include
#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
#include<cmath>
using namespace std;
//typedef
typedef vector<int> VI;
typedef vector<string> VS;
typedef vector<char> VC;
int main() {
int num;
VI y(10), n(10);
cin >> num;
VI a(num), b(num), c(num), d(num);
int cnt=0,memo;
VS r(num);
for (int i = 0; i < num; i++) {
cin >> a[i] >> b[i] >> c[i] >> d[i] >> r[i];
}
for (int i = 0; i < num; i++) {
cnt = 0;
memo = 0;
if (r[i] == "NO") {
n[a[i]]++;
n[b[i]]++;
n[c[i]]++;
n[d[i]]++;
for (int j = 0; j < 10; j++) {
if (n[j] == 0) {
cnt++;
memo = j;
}
}
if (cnt == 1) cout << memo << endl;
} else if(r[i]=="YES"){
y[a[i]]++;
y[b[i]]++;
y[c[i]]++;
y[d[i]]++;
for (int j = 0; j < 10; j++) {
if (y[j] >= 2) {
cout << j << endl;
}
}
}
}
return 0;
}
Eclair1015