結果

問題 No.239 にゃんぱすー
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 22:29:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 75,444 KB
実行使用メモリ 58,340 KB
最終ジャッジ日時 2024-11-06 12:24:18
合計ジャッジ時間 10,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,076 KB
testcase_01 AC 137 ms
53,856 KB
testcase_02 AC 138 ms
53,852 KB
testcase_03 AC 137 ms
54,044 KB
testcase_04 AC 135 ms
53,808 KB
testcase_05 AC 138 ms
53,772 KB
testcase_06 AC 133 ms
54,088 KB
testcase_07 AC 135 ms
53,900 KB
testcase_08 AC 142 ms
54,144 KB
testcase_09 AC 147 ms
53,964 KB
testcase_10 AC 168 ms
54,068 KB
testcase_11 AC 177 ms
54,264 KB
testcase_12 AC 179 ms
54,412 KB
testcase_13 AC 182 ms
54,228 KB
testcase_14 AC 187 ms
54,288 KB
testcase_15 AC 189 ms
54,368 KB
testcase_16 AC 195 ms
54,244 KB
testcase_17 AC 195 ms
54,256 KB
testcase_18 AC 203 ms
56,148 KB
testcase_19 AC 203 ms
56,388 KB
testcase_20 AC 206 ms
56,488 KB
testcase_21 AC 207 ms
56,612 KB
testcase_22 AC 209 ms
57,260 KB
testcase_23 AC 214 ms
56,984 KB
testcase_24 AC 221 ms
57,336 KB
testcase_25 AC 229 ms
58,032 KB
testcase_26 AC 228 ms
57,664 KB
testcase_27 AC 144 ms
53,864 KB
testcase_28 AC 174 ms
54,164 KB
testcase_29 AC 178 ms
54,112 KB
testcase_30 AC 185 ms
54,288 KB
testcase_31 AC 191 ms
54,100 KB
testcase_32 AC 200 ms
56,096 KB
testcase_33 AC 208 ms
56,812 KB
testcase_34 AC 213 ms
56,348 KB
testcase_35 AC 223 ms
57,648 KB
testcase_36 AC 232 ms
58,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] num = new int[n];
		int max = -1;
		for (int i=0; i<n; i++) {
			for (int j=0; j<n; j++) {
				String s = sc.next();
				if (s.equals("nyanpass") || s.equals("-")) {
					num[j]++;
					max = Math.max(max,num[j]);
				}
			}
		}
		
		//numを回して、maxと同じ値が一つだけあれば、それを出力。
		//複数ある場合、あるいは同じ値がない場合は、-1を出力。
		
		int max_num = 0;
		int renchon = 0;
		for (int i=0; i<n; i++) {
			if (num[i]==n) {
				max_num++;
				renchon = i+1;
			}
		}
		
		if (max_num==0 || max_num >= 2) {System.out.println(-1);}
		else if (max_num==1) {System.out.println(renchon);}
	}
}
0