結果

問題 No.239 にゃんぱすー
ユーザー kou6839kou6839
提出日時 2015-07-16 16:12:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 75,944 KB
実行使用メモリ 46,492 KB
最終ジャッジ日時 2024-07-08 08:12:57
合計ジャッジ時間 8,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,864 KB
testcase_01 AC 105 ms
41,424 KB
testcase_02 AC 105 ms
41,220 KB
testcase_03 AC 105 ms
40,976 KB
testcase_04 AC 106 ms
41,372 KB
testcase_05 AC 106 ms
41,392 KB
testcase_06 AC 105 ms
41,152 KB
testcase_07 AC 110 ms
40,680 KB
testcase_08 AC 119 ms
41,428 KB
testcase_09 AC 118 ms
41,116 KB
testcase_10 AC 125 ms
41,244 KB
testcase_11 AC 141 ms
41,568 KB
testcase_12 AC 149 ms
41,824 KB
testcase_13 AC 146 ms
42,104 KB
testcase_14 AC 147 ms
42,044 KB
testcase_15 AC 154 ms
42,752 KB
testcase_16 AC 146 ms
42,356 KB
testcase_17 AC 182 ms
43,136 KB
testcase_18 AC 176 ms
42,484 KB
testcase_19 AC 169 ms
43,004 KB
testcase_20 AC 169 ms
43,272 KB
testcase_21 AC 190 ms
43,916 KB
testcase_22 AC 199 ms
45,592 KB
testcase_23 AC 191 ms
44,980 KB
testcase_24 AC 187 ms
46,452 KB
testcase_25 AC 189 ms
46,492 KB
testcase_26 AC 189 ms
46,476 KB
testcase_27 AC 112 ms
40,900 KB
testcase_28 AC 136 ms
41,132 KB
testcase_29 AC 141 ms
41,864 KB
testcase_30 AC 148 ms
41,940 KB
testcase_31 AC 153 ms
42,512 KB
testcase_32 AC 156 ms
43,040 KB
testcase_33 AC 171 ms
43,444 KB
testcase_34 AC 176 ms
44,260 KB
testcase_35 AC 182 ms
46,432 KB
testcase_36 AC 196 ms
46,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.Frame;
import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		String[][] table = new String[N][N];
		for(int i=0;i<N;i++){
			for(int j=0;j<N;j++){
				table[i][j]=sc.next();
			}
		}
		int ans = -1;
		t:for(int i=0;i<N;i++){
			for(int j=0;j<N;j++){
				if(i==j) continue;
				if(!table[j][i].equals("nyanpass")){
					continue t;
				}
			}
			if(ans==-1){
				ans = i+1;
			}else{
				System.out.println(-1);
				return;
			}
		}
		System.out.println(ans);
	}
}
0