結果

問題 No.239 にゃんぱすー
ユーザー tentententen
提出日時 2020-11-11 08:59:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 3,864 ms
コンパイル使用メモリ 75,628 KB
実行使用メモリ 46,300 KB
最終ジャッジ日時 2024-07-22 18:19:08
合計ジャッジ時間 10,977 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,896 KB
testcase_01 AC 106 ms
41,044 KB
testcase_02 AC 105 ms
41,068 KB
testcase_03 AC 118 ms
40,144 KB
testcase_04 AC 133 ms
41,452 KB
testcase_05 AC 102 ms
41,416 KB
testcase_06 AC 114 ms
41,344 KB
testcase_07 AC 99 ms
41,104 KB
testcase_08 AC 133 ms
41,632 KB
testcase_09 AC 136 ms
41,440 KB
testcase_10 AC 140 ms
41,432 KB
testcase_11 AC 151 ms
41,496 KB
testcase_12 AC 148 ms
42,064 KB
testcase_13 AC 151 ms
42,028 KB
testcase_14 AC 153 ms
42,580 KB
testcase_15 AC 159 ms
42,320 KB
testcase_16 AC 160 ms
42,308 KB
testcase_17 AC 151 ms
42,580 KB
testcase_18 AC 172 ms
43,184 KB
testcase_19 AC 180 ms
43,532 KB
testcase_20 AC 170 ms
43,452 KB
testcase_21 AC 195 ms
44,188 KB
testcase_22 AC 182 ms
44,140 KB
testcase_23 AC 188 ms
45,000 KB
testcase_24 AC 191 ms
46,192 KB
testcase_25 AC 198 ms
46,208 KB
testcase_26 AC 197 ms
46,300 KB
testcase_27 AC 128 ms
41,600 KB
testcase_28 AC 143 ms
41,680 KB
testcase_29 AC 164 ms
41,948 KB
testcase_30 AC 160 ms
42,536 KB
testcase_31 AC 167 ms
42,764 KB
testcase_32 AC 171 ms
42,664 KB
testcase_33 AC 176 ms
43,644 KB
testcase_34 AC 179 ms
44,360 KB
testcase_35 AC 191 ms
45,464 KB
testcase_36 AC 192 ms
46,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        boolean[][] probables = new boolean[n][n];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                probables[i][j] = (sc.next().equals("nyanpass"));
            }
        }
        ArrayList<Integer> list = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            boolean flag = true;
            for (int j = 0; j < n; j++) {
                if (i == j) {
                    continue;
                }
                flag &= probables[j][i];
            }
            if (flag) {
                list.add(i + 1);
            }
        }
        if (list.size() == 1) {
            System.out.println(list.get(0));
        } else {
            System.out.println(-1);
        }
    }
}
0