結果

問題 No.239 にゃんぱすー
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-09-02 10:50:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 78,392 KB
実行使用メモリ 43,732 KB
最終ジャッジ日時 2024-07-18 17:48:06
合計ジャッジ時間 9,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,168 KB
testcase_01 AC 132 ms
41,380 KB
testcase_02 AC 132 ms
41,460 KB
testcase_03 AC 134 ms
41,308 KB
testcase_04 AC 132 ms
41,468 KB
testcase_05 AC 131 ms
41,508 KB
testcase_06 AC 132 ms
41,548 KB
testcase_07 AC 121 ms
40,476 KB
testcase_08 AC 135 ms
41,592 KB
testcase_09 AC 125 ms
40,448 KB
testcase_10 AC 146 ms
41,260 KB
testcase_11 AC 149 ms
41,292 KB
testcase_12 AC 147 ms
41,680 KB
testcase_13 AC 177 ms
41,712 KB
testcase_14 AC 185 ms
41,936 KB
testcase_15 AC 176 ms
41,688 KB
testcase_16 AC 185 ms
42,100 KB
testcase_17 AC 187 ms
42,600 KB
testcase_18 AC 193 ms
42,676 KB
testcase_19 AC 207 ms
42,860 KB
testcase_20 AC 218 ms
42,776 KB
testcase_21 AC 215 ms
42,720 KB
testcase_22 AC 210 ms
42,744 KB
testcase_23 AC 226 ms
42,772 KB
testcase_24 AC 225 ms
43,496 KB
testcase_25 AC 226 ms
43,732 KB
testcase_26 AC 218 ms
42,832 KB
testcase_27 AC 121 ms
40,412 KB
testcase_28 AC 143 ms
41,572 KB
testcase_29 AC 148 ms
41,640 KB
testcase_30 AC 171 ms
41,684 KB
testcase_31 AC 173 ms
42,060 KB
testcase_32 AC 191 ms
42,664 KB
testcase_33 AC 215 ms
43,292 KB
testcase_34 AC 211 ms
42,712 KB
testcase_35 AC 218 ms
43,324 KB
testcase_36 AC 233 ms
43,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;

import static java.lang.Math.*;

public class Main {
  private void solve() {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    sc.nextLine();
    String[][] mat = new String[n][n];
    int[] nyan = new int[n];
    for(int r=0; r<n; r++) {
      String line = sc.nextLine();
      String[] sp = line.split(" ");
      for(int c=0; c<n; c++) {
        mat[r][c] = sp[c];
      }
    }
    for(int r=0; r<n; r++) {
      for(int c=0; c<n; c++) {
        if(mat[r][c].equals("nyanpass")) { nyan[c]++; }
      }
    }
    int cnt = 0, res = -1;
    for(int i=0; i<n; i++) {
      if(nyan[i] == n-1) { cnt++; res = i+1; }
    }
    System.out.printf("%d\n", cnt==1?res:-1);
  }

  public static void main(String[] args) {
    new Main().solve();
  }
}
0