結果

問題 No.239 にゃんぱすー
ユーザー dazydazy
提出日時 2017-03-08 02:04:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 3,643 ms
コンパイル使用メモリ 75,124 KB
実行使用メモリ 58,500 KB
最終ジャッジ日時 2024-06-23 18:03:39
合計ジャッジ時間 11,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,024 KB
testcase_01 AC 129 ms
54,032 KB
testcase_02 AC 129 ms
54,304 KB
testcase_03 AC 129 ms
54,024 KB
testcase_04 AC 130 ms
54,064 KB
testcase_05 AC 130 ms
54,152 KB
testcase_06 AC 129 ms
54,268 KB
testcase_07 AC 134 ms
54,208 KB
testcase_08 AC 134 ms
54,152 KB
testcase_09 AC 143 ms
54,136 KB
testcase_10 AC 164 ms
54,388 KB
testcase_11 AC 163 ms
54,516 KB
testcase_12 AC 171 ms
54,556 KB
testcase_13 AC 178 ms
54,492 KB
testcase_14 AC 174 ms
54,352 KB
testcase_15 AC 182 ms
54,512 KB
testcase_16 AC 178 ms
54,648 KB
testcase_17 AC 189 ms
54,508 KB
testcase_18 AC 191 ms
56,684 KB
testcase_19 AC 195 ms
57,036 KB
testcase_20 AC 197 ms
56,460 KB
testcase_21 AC 199 ms
57,032 KB
testcase_22 AC 208 ms
56,740 KB
testcase_23 AC 204 ms
56,820 KB
testcase_24 AC 211 ms
57,652 KB
testcase_25 AC 220 ms
58,020 KB
testcase_26 AC 219 ms
58,500 KB
testcase_27 AC 134 ms
53,996 KB
testcase_28 AC 162 ms
54,548 KB
testcase_29 AC 170 ms
54,256 KB
testcase_30 AC 170 ms
54,336 KB
testcase_31 AC 189 ms
54,288 KB
testcase_32 AC 191 ms
56,700 KB
testcase_33 AC 197 ms
56,500 KB
testcase_34 AC 200 ms
57,236 KB
testcase_35 AC 218 ms
57,460 KB
testcase_36 AC 220 ms
58,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int ans = -1;

        int N = scan.nextInt();
        String A;
        boolean b [] = new boolean[N];
        int flag = 0;

        for (int i = 0; i < N; i++) {
            for (int j = 0; j < N; j++) {
                A = scan.next();
                if (i==j) continue;
                if (!b[j]) {
                    if (!A.equals("nyanpass")) {
                        b[j] = true;
                    }
                }
            }
        }

        for (int i = 0; i < N; i++) {
            if (!b[i]) {
                if (flag!=0) break;
                flag = i+1;
            }
            if (i==N-1 && flag!=0) ans = flag;
        }

       System.out.println(ans);
    }
}
0