結果

問題 No.239 にゃんぱすー
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 17:52:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 58,308 KB
最終ジャッジ日時 2024-09-13 11:31:28
合計ジャッジ時間 9,894 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,160 KB
testcase_01 AC 132 ms
53,956 KB
testcase_02 AC 129 ms
54,032 KB
testcase_03 AC 134 ms
53,932 KB
testcase_04 AC 132 ms
54,056 KB
testcase_05 AC 133 ms
54,172 KB
testcase_06 AC 134 ms
54,132 KB
testcase_07 AC 137 ms
54,044 KB
testcase_08 AC 141 ms
54,276 KB
testcase_09 AC 146 ms
54,084 KB
testcase_10 AC 170 ms
54,348 KB
testcase_11 AC 175 ms
54,340 KB
testcase_12 AC 175 ms
54,416 KB
testcase_13 AC 178 ms
54,364 KB
testcase_14 AC 171 ms
54,368 KB
testcase_15 AC 184 ms
54,476 KB
testcase_16 AC 179 ms
54,580 KB
testcase_17 AC 190 ms
54,260 KB
testcase_18 AC 195 ms
56,564 KB
testcase_19 AC 196 ms
56,092 KB
testcase_20 AC 201 ms
56,348 KB
testcase_21 AC 196 ms
56,520 KB
testcase_22 AC 210 ms
56,988 KB
testcase_23 AC 210 ms
57,140 KB
testcase_24 AC 217 ms
57,492 KB
testcase_25 AC 225 ms
57,868 KB
testcase_26 AC 232 ms
58,308 KB
testcase_27 AC 136 ms
54,056 KB
testcase_28 AC 165 ms
54,300 KB
testcase_29 AC 172 ms
54,036 KB
testcase_30 AC 176 ms
54,376 KB
testcase_31 AC 181 ms
54,412 KB
testcase_32 AC 194 ms
56,688 KB
testcase_33 AC 199 ms
56,556 KB
testcase_34 AC 209 ms
57,504 KB
testcase_35 AC 217 ms
57,380 KB
testcase_36 AC 229 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

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?-1:ans+1);
		
	}
}
0