結果

問題 No.239 にゃんぱすー
ユーザー mits58mits58
提出日時 2016-07-02 16:20:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 2,404 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 46,560 KB
最終ジャッジ日時 2024-10-12 00:56:28
合計ジャッジ時間 10,222 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,956 KB
testcase_01 AC 132 ms
41,048 KB
testcase_02 AC 135 ms
41,088 KB
testcase_03 AC 135 ms
41,188 KB
testcase_04 AC 122 ms
39,988 KB
testcase_05 AC 133 ms
41,012 KB
testcase_06 AC 133 ms
40,976 KB
testcase_07 AC 139 ms
40,984 KB
testcase_08 AC 143 ms
40,896 KB
testcase_09 AC 149 ms
41,068 KB
testcase_10 AC 170 ms
41,324 KB
testcase_11 AC 174 ms
41,728 KB
testcase_12 AC 178 ms
41,432 KB
testcase_13 AC 183 ms
41,752 KB
testcase_14 AC 174 ms
41,704 KB
testcase_15 AC 184 ms
42,056 KB
testcase_16 AC 196 ms
42,488 KB
testcase_17 AC 187 ms
42,516 KB
testcase_18 AC 199 ms
42,500 KB
testcase_19 AC 203 ms
42,824 KB
testcase_20 AC 206 ms
43,604 KB
testcase_21 AC 212 ms
43,572 KB
testcase_22 AC 218 ms
44,100 KB
testcase_23 AC 218 ms
44,496 KB
testcase_24 AC 229 ms
46,348 KB
testcase_25 AC 234 ms
46,164 KB
testcase_26 AC 233 ms
46,384 KB
testcase_27 AC 142 ms
41,108 KB
testcase_28 AC 169 ms
41,144 KB
testcase_29 AC 174 ms
41,308 KB
testcase_30 AC 184 ms
41,852 KB
testcase_31 AC 193 ms
41,916 KB
testcase_32 AC 199 ms
42,704 KB
testcase_33 AC 200 ms
43,452 KB
testcase_34 AC 215 ms
43,764 KB
testcase_35 AC 227 ms
45,816 KB
testcase_36 AC 236 ms
46,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			String[][] a=new String[n][n];
			for(int i=0;i<n;i++) for(int j=0;j<n;j++) a[i][j]=sc.next();
			int ans=0;
			for(int i=0;i<n;i++){
				boolean r=true;
				for(int j=0;j<n;j++) if(i!=j && !a[j][i].equals("nyanpass")) r=false;
				if(ans==-1) break;
				else if(r && ans==0) ans=(i+1);
				else if(r) ans=-1;
			}
			System.out.println(ans<=0 ? -1 : ans);
		}
	}
}
0