結果

問題 No.239 にゃんぱすー
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 22:01:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 45,420 KB
最終ジャッジ日時 2024-11-25 21:38:07
合計ジャッジ時間 9,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,396 KB
testcase_01 AC 117 ms
41,372 KB
testcase_02 AC 104 ms
41,432 KB
testcase_03 AC 224 ms
45,420 KB
testcase_04 AC 124 ms
41,560 KB
testcase_05 AC 122 ms
43,144 KB
testcase_06 AC 121 ms
42,976 KB
testcase_07 AC 117 ms
41,384 KB
testcase_08 AC 120 ms
41,532 KB
testcase_09 AC 120 ms
41,060 KB
testcase_10 AC 129 ms
41,400 KB
testcase_11 AC 120 ms
41,420 KB
testcase_12 AC 140 ms
41,656 KB
testcase_13 AC 157 ms
41,260 KB
testcase_14 AC 164 ms
41,528 KB
testcase_15 AC 147 ms
41,368 KB
testcase_16 AC 169 ms
41,612 KB
testcase_17 AC 164 ms
41,628 KB
testcase_18 AC 164 ms
41,776 KB
testcase_19 AC 174 ms
42,272 KB
testcase_20 AC 191 ms
42,164 KB
testcase_21 AC 205 ms
42,524 KB
testcase_22 AC 190 ms
42,420 KB
testcase_23 AC 198 ms
42,260 KB
testcase_24 AC 202 ms
43,264 KB
testcase_25 AC 208 ms
42,960 KB
testcase_26 AC 212 ms
43,404 KB
testcase_27 AC 107 ms
41,396 KB
testcase_28 AC 112 ms
40,516 KB
testcase_29 AC 129 ms
41,108 KB
testcase_30 AC 160 ms
41,496 KB
testcase_31 AC 153 ms
41,380 KB
testcase_32 AC 168 ms
41,608 KB
testcase_33 AC 194 ms
42,388 KB
testcase_34 AC 192 ms
43,204 KB
testcase_35 AC 190 ms
42,556 KB
testcase_36 AC 200 ms
42,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = Integer.parseInt( sc.nextLine() );
        int [] count = new int [N];
        for(int i=0; i<N; i++){
            String tem = sc.nextLine();
            String [] arr = tem.split(" ");
            for(int j=0; j<N; j++){
                if( "nyanpass".equals(arr[j]) ){
                    count[j]++;
                }
            }
        }
        int f = 0;
        for(int i=0; i<N; i++){
            if(count[i]==N-1){
                f++;
            }
        }
        if(f!=1){
            System.out.println(-1);
        }else{
            for(int i=0; i<N; i++){
                if(count[i]==N-1){
                    System.out.println(i+1);
                    break;
                }
            }
        }
    }
}
0