結果

問題 No.239 にゃんぱすー
ユーザー yun_appyun_app
提出日時 2016-05-12 00:06:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 39,492 KB
最終ジャッジ日時 2024-10-05 13:52:00
合計ジャッジ時間 5,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,840 KB
testcase_01 AC 52 ms
37,088 KB
testcase_02 AC 52 ms
36,872 KB
testcase_03 AC 51 ms
37,048 KB
testcase_04 AC 52 ms
36,976 KB
testcase_05 AC 51 ms
36,988 KB
testcase_06 AC 51 ms
36,816 KB
testcase_07 AC 53 ms
37,112 KB
testcase_08 AC 52 ms
36,988 KB
testcase_09 AC 52 ms
36,840 KB
testcase_10 AC 54 ms
36,800 KB
testcase_11 AC 55 ms
37,108 KB
testcase_12 AC 56 ms
37,212 KB
testcase_13 AC 56 ms
37,140 KB
testcase_14 AC 57 ms
36,800 KB
testcase_15 AC 58 ms
37,244 KB
testcase_16 AC 72 ms
37,416 KB
testcase_17 AC 70 ms
38,064 KB
testcase_18 AC 79 ms
37,696 KB
testcase_19 AC 76 ms
37,812 KB
testcase_20 AC 79 ms
38,304 KB
testcase_21 AC 96 ms
38,924 KB
testcase_22 AC 86 ms
38,868 KB
testcase_23 AC 100 ms
39,192 KB
testcase_24 AC 92 ms
39,352 KB
testcase_25 AC 104 ms
39,492 KB
testcase_26 AC 105 ms
39,276 KB
testcase_27 AC 52 ms
37,112 KB
testcase_28 AC 53 ms
36,960 KB
testcase_29 AC 55 ms
37,024 KB
testcase_30 AC 58 ms
36,764 KB
testcase_31 AC 63 ms
37,064 KB
testcase_32 AC 78 ms
38,192 KB
testcase_33 AC 80 ms
38,900 KB
testcase_34 AC 97 ms
39,028 KB
testcase_35 AC 101 ms
39,080 KB
testcase_36 AC 107 ms
39,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Ideone{
    public static void main(String[] args) throws Exception{
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int[] ans = new int[n];
        
        for(int i=0;i<n;i++){
            String[] lines = br.readLine().split(" ");
            for(int j=0;j<n;j++){
                if(i!=j){
                    String word = lines[j];
                    if(!word.equals("nyanpass")){
                        ans[j]++;
                    }
                }
            }
        }
        
        int answer = -1;
        for(int i=0;i<n;i++){
            if(ans[i] == 0){
                if(answer != -1){
                    answer = -1;
                    break;
                }
                answer = i+1;
            }
        }
        
        System.out.println(answer);
    }
}
0