結果

問題 No.239 にゃんぱすー
ユーザー jimanojimano
提出日時 2018-01-20 18:05:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 754 bytes
コンパイル時間 3,718 ms
コンパイル使用メモリ 73,536 KB
実行使用メモリ 39,440 KB
最終ジャッジ日時 2024-06-07 04:28:11
合計ジャッジ時間 7,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
36,412 KB
testcase_01 AC 54 ms
37,128 KB
testcase_02 AC 54 ms
36,376 KB
testcase_03 WA -
testcase_04 AC 55 ms
37,020 KB
testcase_05 WA -
testcase_06 AC 53 ms
37,028 KB
testcase_07 AC 55 ms
36,992 KB
testcase_08 AC 53 ms
37,016 KB
testcase_09 WA -
testcase_10 AC 56 ms
36,800 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 70 ms
36,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 80 ms
38,752 KB
testcase_21 WA -
testcase_22 AC 99 ms
39,208 KB
testcase_23 AC 105 ms
38,940 KB
testcase_24 AC 107 ms
38,980 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 55 ms
37,048 KB
testcase_28 AC 55 ms
37,148 KB
testcase_29 WA -
testcase_30 AC 62 ms
36,864 KB
testcase_31 AC 73 ms
37,224 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 99 ms
39,248 KB
testcase_35 WA -
testcase_36 AC 105 ms
39,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class No0239 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			int N = Integer.parseInt(br.readLine());
			int[] greet = new int[N];
			int ans = -1;
			int cnt = 0;

			for (int i = 0; i < N; i++) {
				String[] str = br.readLine().split(" ");
				for (int j = 0; j < N; j++) {
					if (str[j].equals("nyanpass")) {
						greet[j]++;
					}
				}
			}

			for (int g : greet) {
				if (g == N - 1) {
					ans = g + 1;
					cnt++;
				}
			}
			System.out.println(cnt == 1 ? ans : -1);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0