結果

問題 No.239 にゃんぱすー
ユーザー NoNo
提出日時 2015-07-10 23:09:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,697 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 112,776 KB
実行使用メモリ 27,224 KB
最終ジャッジ日時 2024-07-08 02:05:51
合計ジャッジ時間 2,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,300 KB
testcase_01 AC 24 ms
25,296 KB
testcase_02 AC 25 ms
27,224 KB
testcase_03 AC 24 ms
27,084 KB
testcase_04 AC 23 ms
27,080 KB
testcase_05 AC 23 ms
25,180 KB
testcase_06 AC 22 ms
25,040 KB
testcase_07 AC 23 ms
24,880 KB
testcase_08 AC 24 ms
24,788 KB
testcase_09 AC 23 ms
27,088 KB
testcase_10 AC 22 ms
24,908 KB
testcase_11 AC 23 ms
27,220 KB
testcase_12 AC 22 ms
25,292 KB
testcase_13 AC 22 ms
25,052 KB
testcase_14 AC 23 ms
25,424 KB
testcase_15 AC 23 ms
27,076 KB
testcase_16 AC 23 ms
24,904 KB
testcase_17 AC 24 ms
25,036 KB
testcase_18 AC 23 ms
25,008 KB
testcase_19 AC 23 ms
25,136 KB
testcase_20 AC 25 ms
25,176 KB
testcase_21 AC 24 ms
25,164 KB
testcase_22 AC 27 ms
25,176 KB
testcase_23 AC 27 ms
22,964 KB
testcase_24 AC 26 ms
25,288 KB
testcase_25 AC 25 ms
25,168 KB
testcase_26 AC 26 ms
25,036 KB
testcase_27 AC 23 ms
22,960 KB
testcase_28 AC 24 ms
27,088 KB
testcase_29 AC 24 ms
25,420 KB
testcase_30 AC 23 ms
25,012 KB
testcase_31 AC 23 ms
25,008 KB
testcase_32 AC 25 ms
23,092 KB
testcase_33 AC 24 ms
25,172 KB
testcase_34 AC 25 ms
22,960 KB
testcase_35 AC 25 ms
27,080 KB
testcase_36 AC 25 ms
25,004 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace foryuki
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            bool[] b = new bool[n];

            for (int i = 0; i < b.Length; i++)
            {
                b[i] = true;
            }

            for (int i = 0; i < n; i++)
            {
                string[] s = Console.ReadLine().Split();
                for (int j = 0; j < s.Length; j++)
                {
                    if (s[j] != "nyanpass")
                    {
                        if (s[j] != "-")
                        {
                            b[j] = false;
                        }
                    }
                }
            }

            if (b.Where(x => x == true).Count() != 1)
            {
                Console.WriteLine(-1);
            }
            else
            {
                for (int i = 0; i < n; i++)
                {
                    if (b[i])
                    {
                        Console.WriteLine(i + 1);
                        break;
                    }
                }
            }
        }

        //-------------------------------------------------------------

        static int[] ConvertStringArrayToIntArray(string[] array)
        {
            return Array.ConvertAll(array, str => int.Parse(str));
        }

        static List<int> ConvertStringArrayToIntList(string[] str)
        {
            var list = new List<int>();
            foreach (var c in str) list.Add(int.Parse(c));
            return list;
        }
    }
}
0