結果

問題 No.239 にゃんぱすー
ユーザー GrenacheGrenache
提出日時 2015-07-10 22:28:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 2,804 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 58,392 KB
最終ジャッジ日時 2024-07-08 01:58:36
合計ジャッジ時間 9,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,816 KB
testcase_01 AC 116 ms
54,092 KB
testcase_02 AC 121 ms
53,936 KB
testcase_03 AC 116 ms
54,104 KB
testcase_04 AC 116 ms
54,048 KB
testcase_05 AC 110 ms
53,856 KB
testcase_06 AC 113 ms
53,760 KB
testcase_07 AC 116 ms
53,892 KB
testcase_08 AC 120 ms
54,252 KB
testcase_09 AC 125 ms
53,816 KB
testcase_10 AC 138 ms
54,324 KB
testcase_11 AC 141 ms
54,360 KB
testcase_12 AC 150 ms
54,396 KB
testcase_13 AC 152 ms
54,544 KB
testcase_14 AC 153 ms
54,400 KB
testcase_15 AC 163 ms
54,320 KB
testcase_16 AC 165 ms
54,444 KB
testcase_17 AC 159 ms
54,388 KB
testcase_18 AC 164 ms
56,228 KB
testcase_19 AC 180 ms
56,776 KB
testcase_20 AC 179 ms
56,688 KB
testcase_21 AC 178 ms
56,744 KB
testcase_22 AC 180 ms
56,824 KB
testcase_23 AC 208 ms
57,300 KB
testcase_24 AC 187 ms
57,868 KB
testcase_25 AC 190 ms
57,532 KB
testcase_26 AC 206 ms
58,260 KB
testcase_27 AC 119 ms
54,216 KB
testcase_28 AC 134 ms
54,268 KB
testcase_29 AC 148 ms
54,268 KB
testcase_30 AC 159 ms
54,280 KB
testcase_31 AC 166 ms
54,372 KB
testcase_32 AC 171 ms
56,480 KB
testcase_33 AC 173 ms
56,912 KB
testcase_34 AC 203 ms
57,048 KB
testcase_35 AC 188 ms
57,936 KB
testcase_36 AC 197 ms
58,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder239 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

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

        int ret = -1;
        for (int i = 0; i < n; i++) {
        	boolean flag = true;
        	for (int j = 0; j < n; j++) {
        		if (j != i && !a[j][i].equals("nyanpass")) {
        			flag = false;
        			break;
        		}
        	}
        	if (flag && ret == -1) {
        		ret = i + 1;
        	} else if (flag && ret != -1) {
        		ret = -1;
        		break;
        	}
        }

        System.out.println(ret);
        
        sc.close();
    }
}
0