結果

問題 No.239 にゃんぱすー
ユーザー YOSHIYOSHI
提出日時 2021-03-07 22:12:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 3,824 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 51,912 KB
最終ジャッジ日時 2024-10-09 05:59:26
合計ジャッジ時間 7,608 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,340 KB
testcase_01 AC 52 ms
50,200 KB
testcase_02 AC 53 ms
49,964 KB
testcase_03 AC 53 ms
50,244 KB
testcase_04 AC 52 ms
50,320 KB
testcase_05 AC 53 ms
50,260 KB
testcase_06 AC 52 ms
49,876 KB
testcase_07 AC 53 ms
50,228 KB
testcase_08 AC 53 ms
50,136 KB
testcase_09 AC 54 ms
50,012 KB
testcase_10 AC 55 ms
49,988 KB
testcase_11 AC 56 ms
50,296 KB
testcase_12 AC 57 ms
49,956 KB
testcase_13 AC 58 ms
50,008 KB
testcase_14 AC 58 ms
50,272 KB
testcase_15 AC 61 ms
50,224 KB
testcase_16 AC 65 ms
50,512 KB
testcase_17 AC 78 ms
50,712 KB
testcase_18 AC 74 ms
51,008 KB
testcase_19 AC 75 ms
51,276 KB
testcase_20 AC 78 ms
51,276 KB
testcase_21 AC 97 ms
51,512 KB
testcase_22 AC 99 ms
51,732 KB
testcase_23 AC 91 ms
51,840 KB
testcase_24 AC 102 ms
51,504 KB
testcase_25 AC 93 ms
51,836 KB
testcase_26 AC 104 ms
51,904 KB
testcase_27 AC 53 ms
50,140 KB
testcase_28 AC 55 ms
50,236 KB
testcase_29 AC 56 ms
50,084 KB
testcase_30 AC 59 ms
50,348 KB
testcase_31 AC 63 ms
49,968 KB
testcase_32 AC 81 ms
50,732 KB
testcase_33 AC 89 ms
51,404 KB
testcase_34 AC 97 ms
51,592 KB
testcase_35 AC 102 ms
51,912 KB
testcase_36 AC 106 ms
51,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000239_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int n = Integer.parseInt(br.readLine());
		int[] cntArr = new int[n];
		for(int i = 0; i < n; i++) {
			String[] greetings = br.readLine().split(" ");
			for(int j = 0; j < n; j++) {
				if("nyanpass".equals(greetings[j])) cntArr[j] += 1;
			}
		}
		int result = -1;
		for(int k = 0; k < n; k++) {
			if(cntArr[k] == n - 1) {
				if(result == -1) {
					result = k + 1;
				} else {
					result = -1;
					break;
				}
			}
		}
		System.out.println(result);
	}
}
0