結果

問題 No.239 にゃんぱすー
ユーザー r.suzukir.suzuki
提出日時 2015-12-11 18:19:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 46,500 KB
最終ジャッジ日時 2024-09-15 08:13:48
合計ジャッジ時間 11,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,080 KB
testcase_01 AC 115 ms
39,920 KB
testcase_02 AC 131 ms
41,100 KB
testcase_03 AC 130 ms
41,200 KB
testcase_04 AC 130 ms
41,348 KB
testcase_05 AC 129 ms
41,368 KB
testcase_06 AC 125 ms
41,216 KB
testcase_07 AC 118 ms
40,344 KB
testcase_08 AC 137 ms
41,392 KB
testcase_09 AC 139 ms
41,392 KB
testcase_10 AC 168 ms
41,972 KB
testcase_11 AC 180 ms
41,948 KB
testcase_12 AC 186 ms
41,592 KB
testcase_13 AC 175 ms
42,148 KB
testcase_14 AC 179 ms
42,224 KB
testcase_15 AC 177 ms
42,452 KB
testcase_16 AC 187 ms
42,552 KB
testcase_17 AC 191 ms
42,904 KB
testcase_18 AC 190 ms
42,908 KB
testcase_19 AC 195 ms
43,148 KB
testcase_20 AC 197 ms
43,248 KB
testcase_21 AC 204 ms
43,736 KB
testcase_22 AC 205 ms
44,008 KB
testcase_23 AC 208 ms
44,432 KB
testcase_24 AC 228 ms
46,484 KB
testcase_25 AC 240 ms
46,384 KB
testcase_26 AC 229 ms
46,500 KB
testcase_27 AC 135 ms
41,668 KB
testcase_28 AC 148 ms
41,532 KB
testcase_29 AC 174 ms
41,744 KB
testcase_30 AC 175 ms
41,968 KB
testcase_31 AC 189 ms
42,868 KB
testcase_32 AC 192 ms
42,844 KB
testcase_33 AC 197 ms
43,540 KB
testcase_34 AC 205 ms
44,264 KB
testcase_35 AC 222 ms
46,388 KB
testcase_36 AC 226 ms
46,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_239 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		String[][] greetingList = new String[a][a];

		for (int i = 0; i < greetingList.length; i++) {
			for (int j = 0; j < greetingList.length; j++) {
				greetingList[i][j] = sc.next();
			}
		}

		int sum = 0;
		int renchonNumber = 0;
		boolean renchon = false;
		Loop: for (int i = 0; i < greetingList.length; i++) {
			for (int j = 0; j < greetingList.length; j++) {
				if (i == j) {
					continue;
				}
				if (!greetingList[j][i].equals("nyanpass")) {
					continue Loop;
				}

			}
			sum++;
			renchonNumber = i + 1;
			renchon = true;
			if (sum > 1) {
				renchon = false;
				break;
			}
		}

		if (renchon) {
			System.out.println(renchonNumber);
		} else {
			System.out.println(-1);
		}

	}
}
0