結果

問題 No.239 にゃんぱすー
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 22:21:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 812 bytes
コンパイル時間 2,865 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 58,288 KB
最終ジャッジ日時 2024-11-06 10:02:11
合計ジャッジ時間 10,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
39,916 KB
testcase_01 AC 125 ms
41,720 KB
testcase_02 AC 130 ms
41,136 KB
testcase_03 AC 130 ms
41,044 KB
testcase_04 AC 112 ms
39,868 KB
testcase_05 AC 128 ms
41,448 KB
testcase_06 AC 127 ms
49,860 KB
testcase_07 AC 130 ms
41,448 KB
testcase_08 AC 133 ms
41,144 KB
testcase_09 AC 154 ms
41,876 KB
testcase_10 AC 147 ms
41,576 KB
testcase_11 AC 168 ms
41,400 KB
testcase_12 AC 174 ms
42,236 KB
testcase_13 AC 171 ms
42,324 KB
testcase_14 AC 164 ms
42,244 KB
testcase_15 AC 189 ms
42,348 KB
testcase_16 AC 187 ms
42,332 KB
testcase_17 AC 189 ms
42,252 KB
testcase_18 AC 194 ms
43,136 KB
testcase_19 AC 209 ms
43,292 KB
testcase_20 AC 213 ms
43,576 KB
testcase_21 AC 207 ms
43,888 KB
testcase_22 AC 219 ms
44,172 KB
testcase_23 AC 222 ms
44,568 KB
testcase_24 AC 226 ms
45,740 KB
testcase_25 AC 219 ms
45,976 KB
testcase_26 AC 228 ms
46,332 KB
testcase_27 AC 134 ms
41,504 KB
testcase_28 AC 163 ms
42,040 KB
testcase_29 AC 184 ms
41,984 KB
testcase_30 WA -
testcase_31 AC 190 ms
42,828 KB
testcase_32 AC 193 ms
42,980 KB
testcase_33 AC 212 ms
44,412 KB
testcase_34 AC 207 ms
44,428 KB
testcase_35 AC 219 ms
45,660 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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]==max) {
				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