結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,708 KB
testcase_01 AC 115 ms
53,804 KB
testcase_02 AC 102 ms
53,068 KB
testcase_03 AC 124 ms
54,136 KB
testcase_04 AC 101 ms
52,904 KB
testcase_05 AC 109 ms
52,940 KB
testcase_06 AC 102 ms
52,412 KB
testcase_07 AC 100 ms
52,352 KB
testcase_08 AC 118 ms
54,076 KB
testcase_09 AC 119 ms
53,820 KB
testcase_10 AC 115 ms
52,688 KB
testcase_11 AC 121 ms
52,660 KB
testcase_12 AC 131 ms
53,904 KB
testcase_13 AC 152 ms
54,208 KB
testcase_14 AC 154 ms
54,096 KB
testcase_15 AC 152 ms
54,020 KB
testcase_16 AC 160 ms
53,916 KB
testcase_17 AC 154 ms
54,200 KB
testcase_18 AC 170 ms
54,072 KB
testcase_19 AC 176 ms
54,808 KB
testcase_20 AC 197 ms
54,760 KB
testcase_21 AC 185 ms
54,368 KB
testcase_22 AC 202 ms
54,116 KB
testcase_23 AC 185 ms
54,232 KB
testcase_24 AC 196 ms
55,132 KB
testcase_25 AC 204 ms
56,868 KB
testcase_26 AC 202 ms
56,356 KB
testcase_27 AC 119 ms
53,940 KB
testcase_28 AC 124 ms
53,972 KB
testcase_29 AC 134 ms
54,172 KB
testcase_30 AC 153 ms
53,840 KB
testcase_31 AC 157 ms
53,720 KB
testcase_32 AC 163 ms
54,388 KB
testcase_33 AC 190 ms
54,280 KB
testcase_34 AC 202 ms
53,848 KB
testcase_35 AC 203 ms
54,552 KB
testcase_36 AC 209 ms
56,368 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