結果

問題 No.239 にゃんぱすー
ユーザー nCk_cvnCk_cv
提出日時 2015-08-02 02:19:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 47,020 KB
最終ジャッジ日時 2024-07-18 00:45:08
合計ジャッジ時間 10,063 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,840 KB
testcase_01 AC 134 ms
40,852 KB
testcase_02 AC 131 ms
41,344 KB
testcase_03 AC 130 ms
40,804 KB
testcase_04 AC 131 ms
41,000 KB
testcase_05 AC 133 ms
41,056 KB
testcase_06 AC 117 ms
40,032 KB
testcase_07 AC 134 ms
41,680 KB
testcase_08 AC 138 ms
40,944 KB
testcase_09 AC 145 ms
40,924 KB
testcase_10 AC 164 ms
41,268 KB
testcase_11 AC 183 ms
41,660 KB
testcase_12 AC 174 ms
41,736 KB
testcase_13 AC 174 ms
41,740 KB
testcase_14 AC 181 ms
42,328 KB
testcase_15 AC 186 ms
42,220 KB
testcase_16 AC 188 ms
42,464 KB
testcase_17 AC 216 ms
43,324 KB
testcase_18 AC 201 ms
42,768 KB
testcase_19 AC 195 ms
43,196 KB
testcase_20 AC 217 ms
43,388 KB
testcase_21 AC 202 ms
44,028 KB
testcase_22 AC 204 ms
44,284 KB
testcase_23 AC 208 ms
44,860 KB
testcase_24 AC 217 ms
45,852 KB
testcase_25 AC 235 ms
45,888 KB
testcase_26 AC 232 ms
47,020 KB
testcase_27 AC 137 ms
40,892 KB
testcase_28 AC 167 ms
41,612 KB
testcase_29 AC 174 ms
41,692 KB
testcase_30 AC 174 ms
42,128 KB
testcase_31 AC 187 ms
42,480 KB
testcase_32 AC 200 ms
43,004 KB
testcase_33 AC 197 ms
43,500 KB
testcase_34 AC 208 ms
44,288 KB
testcase_35 AC 219 ms
45,708 KB
testcase_36 AC 227 ms
46,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		String[][] list = new String[n][n];
		int sum = 0;
		int id  = -1;
		for(int i = 0; i < n; i++) {
			for(int j = 0; j < n; j++) {
				list[i][j] = sc.next();
			}
		}
		IN:for(int i = 0; i < n; i++) {
			for(int j = 0; j < n; j++) {
				if(i == j) continue;
				if(!list[j][i].equals("nyanpass")) continue IN;
			}
			sum++;
			id = i;
		}
		if(sum != 1) id = -2;
		System.out.println((id+1));
		
		
		
		
	}
}
0