結果

問題 No.239 にゃんぱすー
ユーザー hikari2004hikari2004
提出日時 2016-04-21 16:44:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 2,923 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 58,132 KB
最終ジャッジ日時 2024-10-04 14:32:54
合計ジャッジ時間 9,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,068 KB
testcase_01 AC 108 ms
53,072 KB
testcase_02 AC 116 ms
53,780 KB
testcase_03 AC 105 ms
52,924 KB
testcase_04 AC 105 ms
54,968 KB
testcase_05 AC 109 ms
52,876 KB
testcase_06 AC 117 ms
54,100 KB
testcase_07 AC 121 ms
54,064 KB
testcase_08 AC 124 ms
54,068 KB
testcase_09 AC 138 ms
54,104 KB
testcase_10 AC 145 ms
54,364 KB
testcase_11 AC 149 ms
54,436 KB
testcase_12 AC 163 ms
54,380 KB
testcase_13 AC 156 ms
54,140 KB
testcase_14 AC 170 ms
54,356 KB
testcase_15 AC 172 ms
54,332 KB
testcase_16 AC 179 ms
54,212 KB
testcase_17 AC 158 ms
54,576 KB
testcase_18 AC 181 ms
56,704 KB
testcase_19 AC 185 ms
56,380 KB
testcase_20 AC 191 ms
56,740 KB
testcase_21 AC 185 ms
56,456 KB
testcase_22 AC 183 ms
56,876 KB
testcase_23 AC 192 ms
56,700 KB
testcase_24 AC 196 ms
57,316 KB
testcase_25 AC 213 ms
57,940 KB
testcase_26 AC 228 ms
58,004 KB
testcase_27 AC 121 ms
54,152 KB
testcase_28 AC 152 ms
54,664 KB
testcase_29 AC 161 ms
54,504 KB
testcase_30 AC 170 ms
54,184 KB
testcase_31 AC 175 ms
54,372 KB
testcase_32 AC 176 ms
56,504 KB
testcase_33 AC 190 ms
56,544 KB
testcase_34 AC 192 ms
57,028 KB
testcase_35 AC 205 ms
57,492 KB
testcase_36 AC 206 ms
58,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;

import java.util.Scanner;

public class No239 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		String[][] murabito = new String[n][n];
		int count = 0;
		int ans = -1;

		for(int i = 0; i < n; i++){
			for(int j = 0; j < n; j++){
				murabito[i][j] = sc.next();
			}
		}

		for(int i = 0; i < n; i++){
			for(int j = 0; j < n; j++){
				if(i==j||murabito[j][i].equals("nyanpass")){
					if(j==n-1){
						ans=i+1;
						count++;
					}
					continue;
				}else{
					break;
				}
			}
		}
		if(count > 1){
			ans = -1;
		}
		System.out.println(ans);

	}
}
0