結果
| 問題 | No.24 数当てゲーム | 
| コンテスト | |
| ユーザー |  piyoko_212 | 
| 提出日時 | 2015-12-29 00:02:41 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 1 ms / 5,000 ms | 
| コード長 | 425 bytes | 
| コンパイル時間 | 170 ms | 
| コンパイル使用メモリ | 34,124 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-09-19 08:14:51 | 
| 合計ジャッジ時間 | 642 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 10 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         int a;scanf("%d",&a);
      |               ~~~~~^~~~~~~~~
main.cpp:9:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |                 for(int j=0;j<4;j++)scanf("%d",&f[i][j]);
      |                                     ~~~~~^~~~~~~~~~~~~~~
main.cpp:10:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |                 scanf("%s",in+i);
      |                 ~~~~~^~~~~~~~~~~
            
            ソースコード
#include<stdio.h>
#include<algorithm>
using namespace std;
int f[10][10];
char in[10];
int main(){
	int a;scanf("%d",&a);
	for(int i=0;i<a;i++){
		for(int j=0;j<4;j++)scanf("%d",&f[i][j]);
		scanf("%s",in+i);
	}
	for(int i=0;i<10;i++){
		bool ok=true;
		for(int j=0;j<a;j++){
			int c=0;
			for(int k=0;k<4;k++)if(f[j][k]==i)c=1;
			if(c&&in[j]=='N')ok=false;
			if(!c&&in[j]=='Y')ok=false;
		}
		if(ok)printf("%d\n",i);
	}
}
            
            
            
        