結果

問題 No.239 にゃんぱすー
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 22:01:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 43,408 KB
最終ジャッジ日時 2024-05-04 11:08:27
合計ジャッジ時間 8,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,824 KB
testcase_01 AC 98 ms
40,164 KB
testcase_02 AC 107 ms
41,260 KB
testcase_03 AC 108 ms
41,384 KB
testcase_04 AC 95 ms
40,240 KB
testcase_05 AC 109 ms
41,092 KB
testcase_06 AC 106 ms
41,228 KB
testcase_07 AC 108 ms
41,000 KB
testcase_08 AC 103 ms
40,224 KB
testcase_09 AC 109 ms
40,244 KB
testcase_10 AC 120 ms
41,452 KB
testcase_11 AC 123 ms
41,316 KB
testcase_12 AC 122 ms
40,872 KB
testcase_13 AC 148 ms
41,540 KB
testcase_14 AC 158 ms
41,216 KB
testcase_15 AC 159 ms
41,344 KB
testcase_16 AC 155 ms
41,780 KB
testcase_17 AC 149 ms
41,768 KB
testcase_18 AC 171 ms
41,876 KB
testcase_19 AC 156 ms
42,084 KB
testcase_20 AC 180 ms
42,600 KB
testcase_21 AC 187 ms
42,184 KB
testcase_22 AC 184 ms
42,704 KB
testcase_23 AC 192 ms
42,776 KB
testcase_24 AC 195 ms
43,260 KB
testcase_25 AC 205 ms
43,408 KB
testcase_26 AC 208 ms
42,788 KB
testcase_27 AC 109 ms
40,968 KB
testcase_28 AC 124 ms
41,388 KB
testcase_29 AC 114 ms
40,304 KB
testcase_30 AC 149 ms
41,112 KB
testcase_31 AC 156 ms
41,348 KB
testcase_32 AC 159 ms
41,504 KB
testcase_33 AC 186 ms
42,600 KB
testcase_34 AC 185 ms
42,476 KB
testcase_35 AC 183 ms
42,264 KB
testcase_36 AC 198 ms
42,808 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