結果
問題 | No.239 にゃんぱすー |
ユーザー |
|
提出日時 | 2016-03-30 23:29:03 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 895 bytes |
コンパイル時間 | 766 ms |
コンパイル使用メモリ | 110,232 KB |
実行使用メモリ | 19,712 KB |
最終ジャッジ日時 | 2024-10-02 08:18:14 |
合計ジャッジ時間 | 2,788 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 33 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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" && greeting[j] != "-") { 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); } }