結果

問題 No.239 にゃんぱすー
ユーザー mitsuomitsuo
提出日時 2016-05-05 12:12:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 78,232 KB
実行使用メモリ 57,000 KB
最終ジャッジ日時 2024-10-05 09:33:58
合計ジャッジ時間 8,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,844 KB
testcase_01 AC 108 ms
53,824 KB
testcase_02 AC 97 ms
52,804 KB
testcase_03 AC 107 ms
53,892 KB
testcase_04 AC 99 ms
52,484 KB
testcase_05 AC 114 ms
54,136 KB
testcase_06 AC 108 ms
53,748 KB
testcase_07 AC 113 ms
53,812 KB
testcase_08 AC 117 ms
54,084 KB
testcase_09 AC 116 ms
54,044 KB
testcase_10 AC 120 ms
53,424 KB
testcase_11 AC 115 ms
52,860 KB
testcase_12 AC 132 ms
53,676 KB
testcase_13 AC 157 ms
53,636 KB
testcase_14 AC 151 ms
53,792 KB
testcase_15 AC 158 ms
53,884 KB
testcase_16 AC 151 ms
53,924 KB
testcase_17 AC 156 ms
53,936 KB
testcase_18 AC 164 ms
53,996 KB
testcase_19 AC 174 ms
54,256 KB
testcase_20 AC 168 ms
54,708 KB
testcase_21 AC 180 ms
54,176 KB
testcase_22 AC 195 ms
56,404 KB
testcase_23 AC 186 ms
56,764 KB
testcase_24 AC 187 ms
56,772 KB
testcase_25 AC 196 ms
56,736 KB
testcase_26 AC 196 ms
57,000 KB
testcase_27 AC 97 ms
52,492 KB
testcase_28 AC 111 ms
52,504 KB
testcase_29 AC 131 ms
53,908 KB
testcase_30 AC 157 ms
53,888 KB
testcase_31 AC 155 ms
53,548 KB
testcase_32 AC 160 ms
53,972 KB
testcase_33 AC 181 ms
54,168 KB
testcase_34 AC 189 ms
56,656 KB
testcase_35 AC 194 ms
56,756 KB
testcase_36 AC 202 ms
56,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static int solve(List<String> in) {
		int N = Integer.valueOf(in.get(0));
		in.remove(0);
		List<String> cand = new ArrayList<>();
		for (int i = 0; i < N; i++) {
			cand.add(String.valueOf(i));
		}

		for (int i = 0; i < N; i++) {
			String[] s = in.get(i).split(" ");
			for (int j = 0; j < N; j++) {
				if (!s[j].equals("nyanpass") && !s[j].equals("-")) {
					cand.remove(String.valueOf(j));
				}

			}
		}

		if (cand.size() == 1) {
			return Integer.valueOf(cand.get(0)) + 1;
		} else {
			return -1;
		}

	}

}
0