結果

問題 No.239 にゃんぱすー
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-14 13:13:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 58,392 KB
最終ジャッジ日時 2024-11-17 14:25:30
合計ジャッジ時間 8,217 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
53,920 KB
testcase_01 AC 104 ms
53,856 KB
testcase_02 WA -
testcase_03 AC 98 ms
53,108 KB
testcase_04 AC 104 ms
53,924 KB
testcase_05 AC 128 ms
54,020 KB
testcase_06 AC 103 ms
54,028 KB
testcase_07 AC 104 ms
53,776 KB
testcase_08 AC 109 ms
53,948 KB
testcase_09 AC 117 ms
54,092 KB
testcase_10 AC 116 ms
54,128 KB
testcase_11 AC 134 ms
54,168 KB
testcase_12 AC 139 ms
53,984 KB
testcase_13 AC 142 ms
54,320 KB
testcase_14 AC 149 ms
54,244 KB
testcase_15 AC 150 ms
54,380 KB
testcase_16 AC 150 ms
54,376 KB
testcase_17 AC 158 ms
54,096 KB
testcase_18 AC 189 ms
56,468 KB
testcase_19 AC 170 ms
56,816 KB
testcase_20 AC 189 ms
56,792 KB
testcase_21 AC 163 ms
56,568 KB
testcase_22 AC 172 ms
56,696 KB
testcase_23 AC 179 ms
56,932 KB
testcase_24 AC 209 ms
57,840 KB
testcase_25 AC 183 ms
58,116 KB
testcase_26 AC 236 ms
58,392 KB
testcase_27 AC 112 ms
54,036 KB
testcase_28 AC 131 ms
54,120 KB
testcase_29 AC 140 ms
54,228 KB
testcase_30 AC 145 ms
54,084 KB
testcase_31 AC 153 ms
54,296 KB
testcase_32 AC 160 ms
56,380 KB
testcase_33 AC 163 ms
56,992 KB
testcase_34 AC 172 ms
56,908 KB
testcase_35 AC 217 ms
58,352 KB
testcase_36 AC 192 ms
58,272 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;
				}
			}
		}
		if(cnt1 == 1) {
			System.out.println(ret);
		} else {
			System.out.println(-1);
		}
 	}
}
0