結果
| 問題 | No.24 数当てゲーム | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2022-05-30 09:26:28 | 
| 言語 | C#(csc) (csc 3.9.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 1,389 bytes | 
| コンパイル時間 | 4,959 ms | 
| コンパイル使用メモリ | 109,240 KB | 
| 実行使用メモリ | 26,264 KB | 
| 最終ジャッジ日時 | 2024-09-21 00:47:46 | 
| 合計ジャッジ時間 | 5,870 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 8 WA * 2 | 
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
namespace yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] n = new int[10];
            int b = 0;
            int ans = 0;
            int a = int.Parse(Console.ReadLine());
            for (int i = 0; i < a; i++)
            {
                string[] s = Console.ReadLine().Split(' ');
                for (int x = 0; x <=a+1; x++)
                {
                    if (x <= 3)
                    {
                        b = int.Parse(s[x]);
                    }
                    
                    for (int z = 0; z < 10; z++)
                    {
                        if (s[4] == "NO")
                        {
                            if (b == z)
                            {
                                n[z] += -1;
                            }
                        }else if (s[4] == "YES")
                        {
                            if (b == z)
                            {
                                n[z]++;
                            }
                        }
                    }
                }
            }
            for (int t = 0; t < 10; t++)
                {
                    if (ans <= n[t])
                    {
                        ans = t;
                    }
                }
            Console.WriteLine(ans);
        }
    }
}
            
            
            
        