結果

問題 No.239 にゃんぱすー
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-14 13:24:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 2,900 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 46,828 KB
最終ジャッジ日時 2024-11-17 14:25:41
合計ジャッジ時間 10,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,048 KB
testcase_01 AC 129 ms
41,084 KB
testcase_02 AC 125 ms
41,356 KB
testcase_03 AC 137 ms
40,992 KB
testcase_04 AC 126 ms
41,068 KB
testcase_05 AC 114 ms
40,156 KB
testcase_06 AC 123 ms
41,408 KB
testcase_07 AC 116 ms
40,012 KB
testcase_08 AC 132 ms
41,152 KB
testcase_09 AC 134 ms
41,432 KB
testcase_10 AC 161 ms
41,436 KB
testcase_11 AC 165 ms
41,316 KB
testcase_12 AC 165 ms
42,140 KB
testcase_13 AC 174 ms
42,328 KB
testcase_14 AC 174 ms
41,956 KB
testcase_15 AC 174 ms
42,116 KB
testcase_16 AC 178 ms
42,528 KB
testcase_17 AC 189 ms
42,708 KB
testcase_18 AC 185 ms
43,076 KB
testcase_19 AC 187 ms
43,540 KB
testcase_20 AC 204 ms
43,896 KB
testcase_21 AC 198 ms
44,120 KB
testcase_22 AC 202 ms
44,696 KB
testcase_23 AC 205 ms
44,932 KB
testcase_24 AC 209 ms
46,336 KB
testcase_25 AC 219 ms
46,540 KB
testcase_26 AC 219 ms
46,656 KB
testcase_27 AC 131 ms
41,168 KB
testcase_28 AC 157 ms
41,392 KB
testcase_29 AC 169 ms
42,144 KB
testcase_30 AC 183 ms
42,320 KB
testcase_31 AC 177 ms
42,348 KB
testcase_32 AC 177 ms
42,872 KB
testcase_33 AC 198 ms
43,700 KB
testcase_34 AC 215 ms
44,352 KB
testcase_35 AC 216 ms
46,556 KB
testcase_36 AC 219 ms
46,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		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 ret = 0; int cnt1 = 0;
		for(int i = 0 ; i < n ; i++) {
			int cnt = 0;
			for(int j = 0 ; j < n ; j++) {
				if(a[j][i].equals("nyanpass")) {
					cnt++;
				}
				if(cnt == n - 1) {
					cnt1++;
					ret = i + 1;
					break;
				}
			}
		}
		if(cnt1 == 1) {
			System.out.println(ret);
		} else {
			System.out.println(-1);
		}
 	}
}
0