結果

問題 No.239 にゃんぱすー
ユーザー yagi2yagi2
提出日時 2017-04-20 16:30:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,170 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 85,040 KB
実行使用メモリ 55,972 KB
最終ジャッジ日時 2024-07-19 21:05:13
合計ジャッジ時間 10,202 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 130 ms
41,180 KB
testcase_03 AC 128 ms
41,056 KB
testcase_04 AC 130 ms
41,284 KB
testcase_05 AC 128 ms
41,212 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 135 ms
41,336 KB
testcase_09 AC 140 ms
41,400 KB
testcase_10 AC 170 ms
41,284 KB
testcase_11 AC 169 ms
41,484 KB
testcase_12 AC 170 ms
41,516 KB
testcase_13 AC 177 ms
41,844 KB
testcase_14 AC 179 ms
42,084 KB
testcase_15 AC 172 ms
41,876 KB
testcase_16 AC 187 ms
42,404 KB
testcase_17 AC 178 ms
42,432 KB
testcase_18 AC 194 ms
42,940 KB
testcase_19 AC 198 ms
42,928 KB
testcase_20 AC 204 ms
43,228 KB
testcase_21 AC 207 ms
43,916 KB
testcase_22 AC 213 ms
43,888 KB
testcase_23 AC 213 ms
44,828 KB
testcase_24 AC 219 ms
45,540 KB
testcase_25 AC 229 ms
46,036 KB
testcase_26 AC 227 ms
46,388 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 168 ms
41,564 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 188 ms
42,720 KB
testcase_33 AC 197 ms
43,884 KB
testcase_34 WA -
testcase_35 AC 226 ms
45,560 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = Integer.parseInt(sc.next());

        Map<Integer, Integer> renchon = new HashMap<>();

        for (int i = 0; i < N; i++) {
            for (int j = 0; j < N; j++) {
                String s = sc.next();
                if (s.equals("nyanpass")) {
                    if (!renchon.containsKey(j)) {
                        renchon.put(j, 0);
                    }
                    renchon.put(j, renchon.get(j)+1);
                }
            }
        }

        int renchonNum = -1;
        boolean renchonFlag = false;
        for (int i = 0; i < N; i++) {
            if (!renchon.containsKey(i)) continue;
            if (renchon.get(i) == N - 1 && renchonNum == -1) {
                renchonNum = i;
                continue;
            }
            if (renchon.get(i) == N - 1 && renchonNum != 1) {
                renchonFlag = true;
            }
        }

        if (!renchonFlag) {
            System.out.println(renchonNum+1);
        } else {
            System.out.println("-1");
        }
    }
}
0