結果

問題 No.239 にゃんぱすー
ユーザー cande398cande398
提出日時 2017-10-16 00:31:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 77,248 KB
実行使用メモリ 46,704 KB
最終ジャッジ日時 2024-11-17 18:52:20
合計ジャッジ時間 10,338 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,456 KB
testcase_01 AC 134 ms
41,024 KB
testcase_02 AC 136 ms
41,308 KB
testcase_03 AC 138 ms
41,428 KB
testcase_04 AC 137 ms
41,012 KB
testcase_05 AC 134 ms
41,424 KB
testcase_06 AC 136 ms
41,456 KB
testcase_07 AC 143 ms
41,032 KB
testcase_08 AC 140 ms
41,456 KB
testcase_09 AC 147 ms
41,552 KB
testcase_10 AC 169 ms
41,388 KB
testcase_11 AC 175 ms
41,980 KB
testcase_12 AC 179 ms
41,596 KB
testcase_13 AC 186 ms
41,948 KB
testcase_14 AC 192 ms
42,928 KB
testcase_15 AC 177 ms
42,620 KB
testcase_16 AC 185 ms
42,668 KB
testcase_17 AC 195 ms
42,960 KB
testcase_18 AC 205 ms
43,160 KB
testcase_19 AC 210 ms
43,420 KB
testcase_20 AC 208 ms
43,296 KB
testcase_21 AC 210 ms
44,324 KB
testcase_22 AC 219 ms
44,896 KB
testcase_23 AC 216 ms
44,568 KB
testcase_24 AC 224 ms
46,516 KB
testcase_25 AC 242 ms
46,404 KB
testcase_26 AC 247 ms
46,608 KB
testcase_27 AC 149 ms
41,940 KB
testcase_28 AC 170 ms
41,648 KB
testcase_29 AC 187 ms
42,084 KB
testcase_30 AC 195 ms
41,872 KB
testcase_31 AC 194 ms
42,416 KB
testcase_32 AC 204 ms
42,640 KB
testcase_33 AC 217 ms
43,544 KB
testcase_34 AC 219 ms
44,680 KB
testcase_35 AC 240 ms
46,128 KB
testcase_36 AC 244 ms
46,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        int i,j,poi = 0;
        Scanner sc = new Scanner(System.in);
        int num = sc.nextInt();
        int[] count = new int[num];
        String[][] line = new String[num][num];
        for(i=0;i<num;i++){
            for(j=0;j<num;j++){
                line[i][j] = sc.next();
            }
        }
        for(j=0;j<num;j++){
            for(i=0;i<num;i++){
                if(i==j && line[i][j].equals("-"))count[j]++;
                else if(line[i][j].equals("nyanpass"))count[j]++;
            }
            if(count[j] == num)poi++;
        }
        if(poi == 1){
            for(i=0;i<num;i++)
                if(count[i] == num)System.out.println(i+1);
        }
        else System.out.println("-1"); 
    }
}
0