結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
52,828 KB
testcase_01 AC 104 ms
54,124 KB
testcase_02 AC 97 ms
52,956 KB
testcase_03 AC 99 ms
53,380 KB
testcase_04 AC 106 ms
54,280 KB
testcase_05 AC 104 ms
53,716 KB
testcase_06 AC 96 ms
53,104 KB
testcase_07 AC 108 ms
53,752 KB
testcase_08 AC 109 ms
53,680 KB
testcase_09 AC 112 ms
53,896 KB
testcase_10 AC 129 ms
53,988 KB
testcase_11 AC 133 ms
54,168 KB
testcase_12 AC 141 ms
54,532 KB
testcase_13 AC 144 ms
54,256 KB
testcase_14 AC 144 ms
54,240 KB
testcase_15 AC 148 ms
54,128 KB
testcase_16 AC 154 ms
54,232 KB
testcase_17 AC 154 ms
54,524 KB
testcase_18 AC 161 ms
56,532 KB
testcase_19 AC 161 ms
57,000 KB
testcase_20 AC 164 ms
56,196 KB
testcase_21 AC 164 ms
56,572 KB
testcase_22 AC 169 ms
56,940 KB
testcase_23 AC 171 ms
57,040 KB
testcase_24 AC 188 ms
57,672 KB
testcase_25 AC 184 ms
58,168 KB
testcase_26 AC 185 ms
57,876 KB
testcase_27 AC 106 ms
54,208 KB
testcase_28 AC 132 ms
54,196 KB
testcase_29 AC 140 ms
54,304 KB
testcase_30 AC 147 ms
54,400 KB
testcase_31 AC 150 ms
54,528 KB
testcase_32 AC 162 ms
56,560 KB
testcase_33 AC 163 ms
56,676 KB
testcase_34 AC 171 ms
56,780 KB
testcase_35 AC 194 ms
57,956 KB
testcase_36 AC 186 ms
57,972 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 cnt2 = 0;
			for(int j = 0 ; j < n ; j++) {
				if(a[j][i].equals("nyanpass")) {
					cnt2++;
					if(cnt2 == n - 1) {
						cnt1++;
						ret = i + 1;
					}
				}
			}
		}
		if(cnt1 == 1) {
			System.out.println(ret);
		} else {
			System.out.println(-1);
		}
 	}
}
0