結果

問題 No.239 にゃんぱすー
ユーザー samplelpmassamplelpmas
提出日時 2016-12-11 18:05:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 58,136 KB
最終ジャッジ日時 2024-11-29 03:34:36
合計ジャッジ時間 10,439 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,936 KB
testcase_01 AC 138 ms
54,128 KB
testcase_02 AC 135 ms
53,928 KB
testcase_03 AC 136 ms
53,972 KB
testcase_04 AC 135 ms
53,760 KB
testcase_05 AC 134 ms
53,968 KB
testcase_06 AC 134 ms
54,044 KB
testcase_07 AC 138 ms
53,968 KB
testcase_08 AC 142 ms
54,232 KB
testcase_09 AC 147 ms
54,120 KB
testcase_10 AC 176 ms
53,960 KB
testcase_11 AC 176 ms
54,400 KB
testcase_12 AC 183 ms
54,360 KB
testcase_13 AC 184 ms
54,236 KB
testcase_14 AC 187 ms
54,388 KB
testcase_15 AC 181 ms
54,164 KB
testcase_16 AC 189 ms
54,328 KB
testcase_17 AC 184 ms
54,404 KB
testcase_18 AC 201 ms
56,716 KB
testcase_19 AC 205 ms
56,704 KB
testcase_20 AC 207 ms
56,552 KB
testcase_21 AC 212 ms
56,836 KB
testcase_22 AC 214 ms
56,752 KB
testcase_23 AC 219 ms
56,684 KB
testcase_24 AC 224 ms
57,308 KB
testcase_25 AC 227 ms
57,980 KB
testcase_26 AC 233 ms
58,136 KB
testcase_27 AC 142 ms
53,964 KB
testcase_28 AC 163 ms
54,056 KB
testcase_29 AC 175 ms
54,296 KB
testcase_30 AC 183 ms
54,096 KB
testcase_31 AC 196 ms
54,268 KB
testcase_32 AC 204 ms
56,472 KB
testcase_33 AC 199 ms
56,576 KB
testcase_34 AC 212 ms
56,952 KB
testcase_35 AC 224 ms
57,720 KB
testcase_36 AC 239 ms
57,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int people = sc.nextInt();

        String[][] greetings = new String[people][people];

        for (int i = 0; i < people; i++) {

            for (int j = 0; j < people; j++) {
                greetings[i][j] = sc.next();
            }

        }

        int[] rengeCount = new int[people];

        for (int i = 0; i < people; i++) {

            for (int j = 0; j < people; j++) {

                if (greetings[i][j].equals("nyanpass")) {
                    rengeCount[j]++;
                }

            }

        }

        int renge = -1;

        for (int i = 0; i < people; i++) {

            if (rengeCount[i] == people - 1) {

                if (renge == -1) {
                    renge = i + 1;
                } else {
                    renge = -1;
                    break;
                }

            }

        }

        System.out.println(renge);

    }

}
0