結果

問題 No.239 にゃんぱすー
ユーザー abL8ZLsTbF
提出日時 2016-03-30 23:27:08
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 873 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 106,544 KB
実行使用メモリ 28,448 KB
最終ジャッジ日時 2024-10-02 08:18:10
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 2
other AC * 16 WA * 17
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 {
    public static void Main() {
        int n = int.Parse(Console.ReadLine());
        bool[] renchon = new bool[n];
        for (int i = 0; i < n; i++) renchon[i] = true;
        for (int i = 0; i < n; i++) {
            string[] greeting = Console.ReadLine().Split();
            for (int j = 0; j < n; j++) {
                if (greeting[j] != "nyanpass") {
                    renchon[j] = false;
                }
            }
        }
        int index = -1;
        for (int i = 0; i < n; i++) {
            if (renchon[i]) {
                if (index == -1) {
                    index = i;
                } else {
                    Console.WriteLine(-1);
                    return;
                }
            }
        }
        if (index == -1) Console.WriteLine(-1);
        else Console.WriteLine(index+1);
    }
}
0