結果

問題 No.239 にゃんぱすー
ユーザー YamaKasaYamaKasa
提出日時 2018-05-01 02:06:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 2,449 ms
コンパイル使用メモリ 77,432 KB
実行使用メモリ 46,444 KB
最終ジャッジ日時 2024-06-28 00:01:49
合計ジャッジ時間 10,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,268 KB
testcase_01 AC 129 ms
40,952 KB
testcase_02 AC 115 ms
39,872 KB
testcase_03 AC 126 ms
41,384 KB
testcase_04 AC 127 ms
41,224 KB
testcase_05 AC 127 ms
41,312 KB
testcase_06 AC 131 ms
41,248 KB
testcase_07 AC 135 ms
41,212 KB
testcase_08 AC 140 ms
41,656 KB
testcase_09 AC 155 ms
41,592 KB
testcase_10 AC 154 ms
41,548 KB
testcase_11 AC 169 ms
41,488 KB
testcase_12 AC 175 ms
41,800 KB
testcase_13 AC 182 ms
42,180 KB
testcase_14 AC 175 ms
42,120 KB
testcase_15 AC 183 ms
42,388 KB
testcase_16 AC 185 ms
42,788 KB
testcase_17 AC 200 ms
42,612 KB
testcase_18 AC 205 ms
43,128 KB
testcase_19 AC 193 ms
43,260 KB
testcase_20 AC 199 ms
43,524 KB
testcase_21 AC 201 ms
44,084 KB
testcase_22 AC 199 ms
44,448 KB
testcase_23 AC 207 ms
44,620 KB
testcase_24 AC 216 ms
45,584 KB
testcase_25 AC 224 ms
45,788 KB
testcase_26 AC 225 ms
46,444 KB
testcase_27 AC 137 ms
41,208 KB
testcase_28 AC 168 ms
41,568 KB
testcase_29 AC 158 ms
42,052 KB
testcase_30 AC 173 ms
42,080 KB
testcase_31 AC 183 ms
42,528 KB
testcase_32 AC 191 ms
42,624 KB
testcase_33 AC 215 ms
43,300 KB
testcase_34 AC 203 ms
44,044 KB
testcase_35 AC 214 ms
45,308 KB
testcase_36 AC 217 ms
46,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();

		String temp = "";
		int [][] B = new int[N][N];

		for(int i = 0; i < N; i++) {
			for(int j = 0; j < N; j++) {
				temp = scan.next();
				if(temp.equals("nyanpass")) {
					B[i][j] = 1;
				}else {
					B[i][j] = 0;
				}
			}
		}
		scan.close();
		int []cnt = new int[N];
		Arrays.fill(cnt, 0);
		for(int i = 0; i < N; i++) {
			for(int j = 0; j < N; j++) {
				if(B[j][i] == 1) {
					cnt[i] ++;
				}
			}
		}
		int k = 0;
		int ans = 0;
		for(int i = 0; i < N; i++) {
			if(cnt[i] == N - 1) {
				ans = i + 1;
				k ++;
			}
		}
		if(k > 1 || k == 0) {
			System.out.println("-1");
		}else {
			System.out.println(ans);
		}


	}
}
0