結果

問題 No.239 にゃんぱすー
ユーザー spaciaspacia
提出日時 2016-01-02 08:00:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 77,656 KB
実行使用メモリ 51,972 KB
最終ジャッジ日時 2024-09-19 09:38:27
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,328 KB
testcase_01 AC 52 ms
49,968 KB
testcase_02 AC 51 ms
50,248 KB
testcase_03 AC 51 ms
50,300 KB
testcase_04 AC 52 ms
50,028 KB
testcase_05 AC 51 ms
50,336 KB
testcase_06 AC 51 ms
50,276 KB
testcase_07 AC 50 ms
50,324 KB
testcase_08 AC 50 ms
50,284 KB
testcase_09 AC 52 ms
50,344 KB
testcase_10 AC 52 ms
50,128 KB
testcase_11 AC 54 ms
50,248 KB
testcase_12 AC 54 ms
49,928 KB
testcase_13 AC 57 ms
49,836 KB
testcase_14 AC 59 ms
50,428 KB
testcase_15 AC 59 ms
50,028 KB
testcase_16 AC 62 ms
50,496 KB
testcase_17 AC 68 ms
50,580 KB
testcase_18 AC 69 ms
50,836 KB
testcase_19 AC 83 ms
51,496 KB
testcase_20 AC 79 ms
51,092 KB
testcase_21 AC 90 ms
51,532 KB
testcase_22 AC 85 ms
51,568 KB
testcase_23 AC 87 ms
51,792 KB
testcase_24 AC 101 ms
51,936 KB
testcase_25 AC 102 ms
51,924 KB
testcase_26 AC 102 ms
51,972 KB
testcase_27 AC 51 ms
50,392 KB
testcase_28 AC 53 ms
50,428 KB
testcase_29 AC 54 ms
50,276 KB
testcase_30 AC 56 ms
50,384 KB
testcase_31 AC 61 ms
50,400 KB
testcase_32 AC 77 ms
50,792 KB
testcase_33 AC 80 ms
51,420 KB
testcase_34 AC 95 ms
51,316 KB
testcase_35 AC 99 ms
51,560 KB
testcase_36 AC 104 ms
51,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main239 {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static int solve (String[][] memo) {
		int ret = -1;
		for (int i = 0; i < memo.length; i++) {
			for (int j = 0; j < memo.length; j++) {
				String s = memo[j][i];
				if (!s.equals("nyanpass") && !s.equals("-")) break;
				if (j == memo.length - 1) {
					if (ret != -1) return -1;
					ret = i + 1;
				}
			}
		}
		return ret;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		String[][] memo = new String[n][n];
		
		for (int i = 0; i < n; i++) {
			String[] line = br.readLine().split(" ");
			for (int j = 0; j < n; j++) {
				memo[i][j] = line[j];
			}
		}
		
		out(solve(memo));
		
	}
}
0