結果

問題 No.239 にゃんぱすー
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 16:44:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 4,854 ms
コンパイル使用メモリ 77,476 KB
実行使用メモリ 58,228 KB
最終ジャッジ日時 2024-11-15 19:02:28
合計ジャッジ時間 11,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,796 KB
testcase_01 AC 133 ms
53,984 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 131 ms
54,236 KB
testcase_05 WA -
testcase_06 AC 128 ms
53,892 KB
testcase_07 AC 135 ms
53,896 KB
testcase_08 AC 137 ms
53,856 KB
testcase_09 WA -
testcase_10 AC 163 ms
54,200 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 172 ms
54,012 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 202 ms
56,688 KB
testcase_21 WA -
testcase_22 AC 209 ms
56,428 KB
testcase_23 AC 211 ms
57,152 KB
testcase_24 AC 220 ms
57,448 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 138 ms
54,000 KB
testcase_28 AC 156 ms
54,172 KB
testcase_29 WA -
testcase_30 AC 179 ms
54,432 KB
testcase_31 AC 185 ms
54,312 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 207 ms
56,596 KB
testcase_35 WA -
testcase_36 AC 222 ms
57,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		String str = "nyanpass";
		String[][] s = new String[n][n];
		boolean[] b = new boolean[n];
		for(int i = 0; i < n; i++){
			b[i] = true;
		}
		for(int i= 0; i < n; i++){
			for(int j = 0; j < n; j++){
				s[i][j] = sc.next();
			}
		}
		for(int i = 0; i < n; i++){
			for(int j = 0; j < n; j++){
				if(i == j){
					continue;
				}
				if(b[j]){
					if(!s[i][j].equals(str)){
						b[j] = false;
					}
				}
			}
		}
		int ren = -1, cnt = n;
		for(int i = 0; i < n; i++){
			if(b[i]){
				ren = i;
			} else {
				cnt--;
			}
		}
		if(cnt > 1 || cnt == 0){
			System.out.println(-1);
		} else {
			System.out.println(ren);
		}
	}
}
0