結果

問題 No.239 にゃんぱすー
ユーザー 練習生練習生
提出日時 2015-08-22 12:36:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 3,389 ms
コンパイル使用メモリ 75,560 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-07-18 12:43:28
合計ジャッジ時間 10,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,984 KB
testcase_01 AC 122 ms
54,120 KB
testcase_02 AC 120 ms
54,168 KB
testcase_03 AC 122 ms
54,256 KB
testcase_04 AC 108 ms
52,832 KB
testcase_05 AC 122 ms
53,948 KB
testcase_06 AC 132 ms
54,184 KB
testcase_07 AC 129 ms
54,112 KB
testcase_08 AC 130 ms
54,028 KB
testcase_09 AC 147 ms
41,384 KB
testcase_10 AC 162 ms
41,412 KB
testcase_11 AC 157 ms
41,616 KB
testcase_12 AC 165 ms
41,696 KB
testcase_13 AC 163 ms
42,304 KB
testcase_14 AC 169 ms
42,096 KB
testcase_15 AC 167 ms
42,504 KB
testcase_16 AC 175 ms
42,680 KB
testcase_17 AC 173 ms
42,736 KB
testcase_18 AC 178 ms
43,460 KB
testcase_19 AC 177 ms
42,988 KB
testcase_20 AC 184 ms
43,692 KB
testcase_21 AC 205 ms
43,796 KB
testcase_22 AC 189 ms
44,312 KB
testcase_23 AC 195 ms
44,600 KB
testcase_24 AC 195 ms
45,432 KB
testcase_25 AC 205 ms
46,084 KB
testcase_26 AC 208 ms
46,796 KB
testcase_27 AC 130 ms
41,508 KB
testcase_28 AC 147 ms
41,360 KB
testcase_29 AC 159 ms
41,748 KB
testcase_30 AC 169 ms
42,348 KB
testcase_31 AC 175 ms
42,704 KB
testcase_32 AC 191 ms
43,192 KB
testcase_33 AC 185 ms
43,808 KB
testcase_34 AC 191 ms
44,204 KB
testcase_35 AC 196 ms
45,712 KB
testcase_36 AC 222 ms
46,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No239 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean notNyanpass[] = new boolean[n];
		for(int i = 0; i < n; i++){
			for(int j = 0; j < n; j++){
				String aisatu = sc.next();
				if(!(aisatu.equals("-")) && !(aisatu.equals("nyanpass"))){
					notNyanpass[j] = true;
				}
			}
		}
		sc.close();
		int renchonCount = 0;
		int renchon = 0;
		for(int i = 0; i < n; i++){
			if(notNyanpass[i] == false){
				renchonCount++;
				renchon = i + 1;
			}
		}
		if(renchonCount == 1){
			System.out.println(renchon);
		}else{
			System.out.println(-1);			
		}
	}
}
0