結果

問題 No.239 にゃんぱすー
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-06 22:20:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 946 bytes
コンパイル時間 3,996 ms
コンパイル使用メモリ 78,188 KB
実行使用メモリ 39,904 KB
最終ジャッジ日時 2024-10-08 16:45:32
合計ジャッジ時間 7,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,872 KB
testcase_01 AC 53 ms
36,636 KB
testcase_02 AC 53 ms
36,952 KB
testcase_03 AC 53 ms
36,888 KB
testcase_04 AC 53 ms
36,960 KB
testcase_05 AC 53 ms
36,936 KB
testcase_06 AC 53 ms
36,892 KB
testcase_07 AC 53 ms
37,036 KB
testcase_08 AC 52 ms
36,500 KB
testcase_09 AC 54 ms
37,064 KB
testcase_10 AC 54 ms
36,944 KB
testcase_11 AC 55 ms
36,988 KB
testcase_12 AC 56 ms
36,888 KB
testcase_13 AC 57 ms
37,060 KB
testcase_14 AC 60 ms
37,236 KB
testcase_15 AC 75 ms
37,008 KB
testcase_16 AC 75 ms
37,448 KB
testcase_17 AC 69 ms
37,856 KB
testcase_18 AC 75 ms
38,072 KB
testcase_19 AC 78 ms
38,168 KB
testcase_20 AC 81 ms
38,168 KB
testcase_21 AC 88 ms
38,812 KB
testcase_22 AC 93 ms
39,148 KB
testcase_23 AC 105 ms
39,196 KB
testcase_24 AC 96 ms
39,496 KB
testcase_25 AC 107 ms
39,456 KB
testcase_26 AC 112 ms
39,564 KB
testcase_27 AC 53 ms
37,164 KB
testcase_28 AC 54 ms
36,792 KB
testcase_29 AC 57 ms
36,784 KB
testcase_30 AC 62 ms
36,668 KB
testcase_31 AC 72 ms
37,784 KB
testcase_32 AC 74 ms
37,860 KB
testcase_33 AC 93 ms
38,484 KB
testcase_34 AC 92 ms
39,152 KB
testcase_35 AC 98 ms
39,320 KB
testcase_36 AC 114 ms
39,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Exercise64{
  public static void main (String[] args) throws IOException{

    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    String num = new String(in.readLine());
    int n = Integer.parseInt(num);

    String[][] greetings = new String[n][n];

    for(int i = 0; i < n; i++){
      String str = new String(in.readLine());
      String[] strArray = str.split(" ");
      greetings[i] = strArray;
    }

    LinkedList<Integer> answer = new LinkedList<Integer>();
    for(int a = 0; a < n; a++){
      boolean flag = true;
      for(int b = 0; b < n; b++){
        if (!greetings[b][a].equals("nyanpass") && !greetings[b][a].equals("-")){
          flag = false;
        }
      }
      if (flag){
        answer.add(a + 1);
      }
    }
    if (answer.size() == 1){
      System.out.println(answer.get(0));
    }else{
      System.out.println(-1);
    }
  }
}
0