結果

問題 No.239 にゃんぱすー
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 18:37:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 77,464 KB
実行使用メモリ 40,016 KB
最終ジャッジ日時 2024-09-13 23:54:13
合計ジャッジ時間 6,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,720 KB
testcase_01 AC 53 ms
37,024 KB
testcase_02 AC 53 ms
37,084 KB
testcase_03 AC 54 ms
37,248 KB
testcase_04 AC 54 ms
37,148 KB
testcase_05 AC 54 ms
37,244 KB
testcase_06 AC 54 ms
37,276 KB
testcase_07 AC 53 ms
37,432 KB
testcase_08 AC 56 ms
37,156 KB
testcase_09 AC 56 ms
36,880 KB
testcase_10 AC 57 ms
37,164 KB
testcase_11 AC 59 ms
37,208 KB
testcase_12 AC 58 ms
37,436 KB
testcase_13 AC 59 ms
37,284 KB
testcase_14 AC 59 ms
36,976 KB
testcase_15 AC 63 ms
37,204 KB
testcase_16 AC 65 ms
37,220 KB
testcase_17 AC 71 ms
38,072 KB
testcase_18 AC 74 ms
38,240 KB
testcase_19 AC 74 ms
38,164 KB
testcase_20 AC 83 ms
38,652 KB
testcase_21 AC 91 ms
38,952 KB
testcase_22 AC 94 ms
39,352 KB
testcase_23 AC 93 ms
39,272 KB
testcase_24 AC 106 ms
39,552 KB
testcase_25 AC 108 ms
39,400 KB
testcase_26 AC 108 ms
39,976 KB
testcase_27 AC 53 ms
37,160 KB
testcase_28 AC 55 ms
37,152 KB
testcase_29 AC 58 ms
37,404 KB
testcase_30 AC 60 ms
37,328 KB
testcase_31 AC 67 ms
37,672 KB
testcase_32 AC 72 ms
37,972 KB
testcase_33 AC 77 ms
38,232 KB
testcase_34 AC 92 ms
39,048 KB
testcase_35 AC 107 ms
39,676 KB
testcase_36 AC 114 ms
40,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

import static java.lang.System.in;


public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());
        String[] inputs;
        int[][] table = new int[N][N];
        for (int i = 0; i < N; i++) {
            inputs = reader.readLine().split(" ");
            for (int j = 0; j < N; j++) {
                if (inputs[j].equals("nyanpass")) {
                    table[i][j] += 1;
                }
            }
        }

        int[] villagers = new int[N];
        for (int i = 0; i < N; i++) {
            int counter = 0;
            for (int j = 0; j < N; j++) {
                if (table[j][i] == 1) {
                    counter += 1;
                }
            }
            villagers[i] = counter;
        }


        int possibleNum = 0;
        int villagerId = -1;
        for (int i = 0; i < N; i++) {
            if (villagers[i] == N - 1) {
                possibleNum += 1;
                villagerId = i+1;
            }
        }
        if(possibleNum==1){
            System.out.println(villagerId);
        } else {
            System.out.println(-1);
        }

    }
}
0