結果

問題 No.239 にゃんぱすー
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 17:51:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 60,144 KB
最終ジャッジ日時 2024-09-13 11:31:16
合計ジャッジ時間 10,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 132 ms
54,076 KB
testcase_03 AC 134 ms
54,152 KB
testcase_04 AC 132 ms
53,932 KB
testcase_05 AC 132 ms
53,960 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 138 ms
54,132 KB
testcase_09 AC 146 ms
54,492 KB
testcase_10 AC 169 ms
54,252 KB
testcase_11 AC 173 ms
54,460 KB
testcase_12 AC 174 ms
54,240 KB
testcase_13 AC 178 ms
54,372 KB
testcase_14 AC 178 ms
54,420 KB
testcase_15 AC 180 ms
54,232 KB
testcase_16 AC 187 ms
54,488 KB
testcase_17 AC 180 ms
54,248 KB
testcase_18 AC 195 ms
56,732 KB
testcase_19 AC 196 ms
56,324 KB
testcase_20 AC 202 ms
56,912 KB
testcase_21 AC 205 ms
57,112 KB
testcase_22 AC 207 ms
56,364 KB
testcase_23 AC 210 ms
56,780 KB
testcase_24 AC 220 ms
57,900 KB
testcase_25 AC 221 ms
58,068 KB
testcase_26 AC 223 ms
57,684 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 172 ms
54,244 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 192 ms
56,904 KB
testcase_33 AC 202 ms
56,592 KB
testcase_34 WA -
testcase_35 AC 219 ms
57,856 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		int[] sonmin = new int[n];
		for (int i=0; i<n; i++) {
			for (int j=0; j<n; j++) {
				String temp = sc.next();
				if (temp.equals("nyanpass") || temp.equals("-")) {
					sonmin[j]++;
				}
			}
		}
		
		int ans = -1;
		int num = 0;
		for (int i=0; i<n; i++) {
			if (sonmin[i] == n) {
				ans = i;
				num++;
			}
		}
		System.out.println(num>=2?-1:ans+1);
		
	}
}
0