結果
問題 | No.239 にゃんぱすー |
ユーザー | nokonoko |
提出日時 | 2015-07-10 22:28:12 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,859 bytes |
コンパイル時間 | 1,025 ms |
コンパイル使用メモリ | 113,104 KB |
実行使用メモリ | 27,496 KB |
最終ジャッジ日時 | 2024-07-08 01:58:02 |
合計ジャッジ時間 | 2,828 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
25,332 KB |
testcase_01 | AC | 25 ms
25,180 KB |
testcase_02 | AC | 25 ms
25,332 KB |
testcase_03 | AC | 25 ms
25,328 KB |
testcase_04 | WA | - |
testcase_05 | AC | 26 ms
25,432 KB |
testcase_06 | AC | 25 ms
25,312 KB |
testcase_07 | AC | 25 ms
27,244 KB |
testcase_08 | WA | - |
testcase_09 | AC | 25 ms
27,348 KB |
testcase_10 | WA | - |
testcase_11 | AC | 25 ms
25,328 KB |
testcase_12 | AC | 25 ms
25,308 KB |
testcase_13 | WA | - |
testcase_14 | AC | 26 ms
25,440 KB |
testcase_15 | AC | 25 ms
25,328 KB |
testcase_16 | AC | 26 ms
23,228 KB |
testcase_17 | AC | 26 ms
25,200 KB |
testcase_18 | AC | 26 ms
25,196 KB |
testcase_19 | AC | 26 ms
25,328 KB |
testcase_20 | WA | - |
testcase_21 | AC | 28 ms
27,360 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 28 ms
27,108 KB |
testcase_26 | AC | 28 ms
25,264 KB |
testcase_27 | AC | 26 ms
27,108 KB |
testcase_28 | AC | 26 ms
25,456 KB |
testcase_29 | AC | 26 ms
25,188 KB |
testcase_30 | AC | 26 ms
25,332 KB |
testcase_31 | AC | 27 ms
27,360 KB |
testcase_32 | AC | 28 ms
25,204 KB |
testcase_33 | AC | 27 ms
25,312 KB |
testcase_34 | AC | 26 ms
23,088 KB |
testcase_35 | AC | 28 ms
27,496 KB |
testcase_36 | AC | 29 ms
25,436 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace YukiCoderNo239 { class Program { static void Main() { int length = LIB.IO.R<int>(); int output = -1; string[][] greeding = LIB.IO.R<string>(length, ' '); for (int i = 0; i < length; i++) { bool flag = true; for (int j = 0; j < length; j++) { if (!((greeding[i][j] == "nyanpass") || (i == j))) { flag = false; break; } } if (flag == true) { output = i + 1; } } for (int i = 0; i < length; i++) { bool flag = true; for (int j = 0; j < length; j++) { if (!((greeding[j][i] == "nyanpass") || (i == j))) { flag = false; break; } } if (flag == true) { output = i + 1; } } LIB.IO.W(output); LIB.IO.WFLUSH(); } } } namespace LIB { public class IO { private const int WMAX = 1000; private static string WSTRING = ""; public static T R<T>() { return (T)(Convert.ChangeType(R(), typeof(T))); } public static T[] R<T>(char splitter = ' ') { return R().Split(splitter).Select(v => UTILITY.PARSE<T>(v)).ToArray(); } public static T[] R<T>(int length) { T[] ret = new T[length]; for (int i = 0; i < length; i++) { ret[i] = R<T>(); } return ret; } public static T[][] R<T>(int length, char splitter = ' ') { T[][] ret = new T[length][]; for (int i = 0; i < length; i++) { ret[i] = R<T>(splitter); } return ret; } private static string R() { return Console.ReadLine(); } public static void W(object value, bool addLineFeed = true) { WSTRING += UTILITY.PARSE<string>(value); if (addLineFeed == true) { WSTRING += "\n"; } if (WSTRING.Count() >= WMAX) { WFLUSH(); } } public static void WFLUSH() { Console.Write(WSTRING); WSTRING = ""; } } public class UTILITY { public static T PARSE<T>(object value) { return (T)(Convert.ChangeType(value, typeof(T))); } } }