結果

問題 No.239 にゃんぱすー
ユーザー yagi2yagi2
提出日時 2017-04-20 16:36:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 2,688 ms
コンパイル使用メモリ 88,248 KB
実行使用メモリ 47,136 KB
最終ジャッジ日時 2024-07-19 21:06:51
合計ジャッジ時間 9,569 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,944 KB
testcase_01 AC 99 ms
40,268 KB
testcase_02 AC 107 ms
40,084 KB
testcase_03 AC 119 ms
41,352 KB
testcase_04 AC 113 ms
41,248 KB
testcase_05 AC 124 ms
41,340 KB
testcase_06 AC 118 ms
41,460 KB
testcase_07 AC 114 ms
40,856 KB
testcase_08 AC 120 ms
40,852 KB
testcase_09 AC 132 ms
41,492 KB
testcase_10 AC 137 ms
41,480 KB
testcase_11 AC 137 ms
41,628 KB
testcase_12 AC 161 ms
42,012 KB
testcase_13 AC 152 ms
42,032 KB
testcase_14 AC 171 ms
42,484 KB
testcase_15 AC 165 ms
42,104 KB
testcase_16 AC 171 ms
42,596 KB
testcase_17 AC 180 ms
43,564 KB
testcase_18 AC 184 ms
42,828 KB
testcase_19 AC 181 ms
43,600 KB
testcase_20 AC 181 ms
43,616 KB
testcase_21 AC 192 ms
44,404 KB
testcase_22 AC 180 ms
44,608 KB
testcase_23 AC 192 ms
44,888 KB
testcase_24 AC 193 ms
45,812 KB
testcase_25 AC 206 ms
46,116 KB
testcase_26 AC 238 ms
46,100 KB
testcase_27 AC 120 ms
41,304 KB
testcase_28 AC 142 ms
41,572 KB
testcase_29 AC 157 ms
42,032 KB
testcase_30 AC 164 ms
42,248 KB
testcase_31 AC 163 ms
42,848 KB
testcase_32 AC 185 ms
43,288 KB
testcase_33 AC 199 ms
43,672 KB
testcase_34 AC 192 ms
43,840 KB
testcase_35 AC 200 ms
46,056 KB
testcase_36 AC 226 ms
47,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

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 cnt = 0;
        for (int i = 0; i < N; i++) {
            if (!renchon.containsKey(i)) continue;
            if (renchon.get(i) == N - 1) cnt++;
        }

        if (cnt != 1) {
            System.out.println("-1");
        } else {
            renchon.forEach((integer, integer2) -> {
                if (integer2 == N -1) System.out.println(integer+1);
            });
        }
    }
}
0