結果

問題 No.24 数当てゲーム
ユーザー laneguelanegue
提出日時 2020-04-02 04:47:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 3,191 ms
コンパイル使用メモリ 112,692 KB
実行使用メモリ 26,104 KB
最終ジャッジ日時 2024-06-27 17:04:55
合計ジャッジ時間 3,423 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,832 KB
testcase_01 AC 27 ms
24,212 KB
testcase_02 AC 28 ms
25,972 KB
testcase_03 AC 27 ms
23,832 KB
testcase_04 AC 27 ms
23,964 KB
testcase_05 AC 28 ms
24,088 KB
testcase_06 AC 27 ms
25,960 KB
testcase_07 AC 29 ms
26,104 KB
testcase_08 AC 28 ms
24,220 KB
testcase_09 AC 28 ms
23,980 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
public class Program
{
	static void Main()
	{
		int N = int.Parse(Console.ReadLine());
		bool[] numbers = new bool[10];
		for (int i = 0; i < numbers.Length; i++)
		{
			numbers[i] = true;
		}
		for (int i = 0; i < N; i++)
		{
			string[] inputs = Console.ReadLine().Split(' ');
			int[] n = new int[4];
			for (int j = 0; j < 4; j++)
			{
				n[j] = int.Parse(inputs[j]);
			}
			if (inputs[4] == "YES")
			{
				for (int j = 0; j < 10; j++){
					if (! Array.Exists(n, e => e == j))
					{
						numbers[j] = false;
					}
				}
			}
			else
			{
				for (int j = 0; j < 4; j++){
					numbers[n[j]] = false;
				}
			}
			Console.Error.WriteLine(String.Concat(numbers));
		}
		Console.WriteLine(Array.FindIndex(numbers, e => e));
	}
}
0