結果

問題 No.239 にゃんぱすー
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-04-17 22:44:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 963 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 74,392 KB
実行使用メモリ 58,116 KB
最終ジャッジ日時 2024-06-27 04:17:45
合計ジャッジ時間 10,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,232 KB
testcase_01 AC 130 ms
54,152 KB
testcase_02 AC 133 ms
54,192 KB
testcase_03 AC 132 ms
54,016 KB
testcase_04 AC 130 ms
54,324 KB
testcase_05 AC 130 ms
54,180 KB
testcase_06 AC 130 ms
53,904 KB
testcase_07 AC 132 ms
53,784 KB
testcase_08 AC 136 ms
54,260 KB
testcase_09 AC 142 ms
54,000 KB
testcase_10 AC 164 ms
54,120 KB
testcase_11 AC 167 ms
54,240 KB
testcase_12 AC 173 ms
54,280 KB
testcase_13 AC 177 ms
54,068 KB
testcase_14 AC 183 ms
54,644 KB
testcase_15 AC 172 ms
54,288 KB
testcase_16 AC 173 ms
54,444 KB
testcase_17 AC 191 ms
54,304 KB
testcase_18 AC 193 ms
56,292 KB
testcase_19 AC 197 ms
56,664 KB
testcase_20 AC 197 ms
56,484 KB
testcase_21 AC 203 ms
56,648 KB
testcase_22 AC 209 ms
56,548 KB
testcase_23 AC 215 ms
57,240 KB
testcase_24 AC 210 ms
57,700 KB
testcase_25 AC 217 ms
58,116 KB
testcase_26 AC 226 ms
58,108 KB
testcase_27 AC 133 ms
54,116 KB
testcase_28 AC 151 ms
54,372 KB
testcase_29 AC 170 ms
54,448 KB
testcase_30 AC 180 ms
54,072 KB
testcase_31 AC 185 ms
54,408 KB
testcase_32 AC 194 ms
56,384 KB
testcase_33 AC 199 ms
56,440 KB
testcase_34 AC 205 ms
56,660 KB
testcase_35 AC 215 ms
57,468 KB
testcase_36 AC 223 ms
57,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();

        String[][] a = new String[n][n];
        for(int i = 0; i < n; i++) {
            for(int j = 0; j < n; j++) {
                a[i][j] = in.next();
            }
        }

        String target = "nyanpass";
        int ans = 0;
        int count = 0;

        for(int j = 0; j < n; j++) {
            boolean flag = true;
            for(int i = 0; i < n; i++) {
                if(a[i][j].equals(target))
                    continue;
                else if(a[i][j].equals("-"))
                    continue;
                else
                    flag = false;
            }
            if(flag) {
                ans = j + 1;
                count++;
            }
        }

        if(count == 1)
            System.out.println(ans);
        else
            System.out.println(-1);
    }
}
0