結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,936 KB
testcase_01 AC 109 ms
53,792 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 92 ms
52,348 KB
testcase_05 WA -
testcase_06 AC 100 ms
52,756 KB
testcase_07 AC 102 ms
52,756 KB
testcase_08 AC 106 ms
52,948 KB
testcase_09 WA -
testcase_10 AC 123 ms
53,884 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 156 ms
53,804 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 184 ms
54,480 KB
testcase_21 WA -
testcase_22 AC 197 ms
56,340 KB
testcase_23 AC 180 ms
56,320 KB
testcase_24 AC 199 ms
56,884 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 104 ms
53,060 KB
testcase_28 AC 110 ms
53,000 KB
testcase_29 WA -
testcase_30 AC 155 ms
53,856 KB
testcase_31 AC 162 ms
54,144 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 185 ms
56,296 KB
testcase_35 WA -
testcase_36 AC 190 ms
56,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.q239;

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

public class Main {

	final static String d = System.getProperty("line.separator");

	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));
		} else {
			return -1;
		}

	}

}
0