結果

問題 No.239 にゃんぱすー
ユーザー ちよちゃんちよちゃん
提出日時 2016-08-02 23:17:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 1,263 bytes
コンパイル時間 5,782 ms
コンパイル使用メモリ 77,544 KB
実行使用メモリ 46,800 KB
最終ジャッジ日時 2024-11-06 23:39:05
合計ジャッジ時間 12,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,012 KB
testcase_01 AC 120 ms
40,052 KB
testcase_02 AC 136 ms
40,984 KB
testcase_03 AC 136 ms
41,084 KB
testcase_04 AC 134 ms
41,100 KB
testcase_05 AC 132 ms
41,048 KB
testcase_06 AC 129 ms
40,944 KB
testcase_07 AC 136 ms
41,108 KB
testcase_08 AC 137 ms
41,412 KB
testcase_09 AC 144 ms
41,364 KB
testcase_10 AC 156 ms
41,480 KB
testcase_11 AC 177 ms
41,640 KB
testcase_12 AC 177 ms
41,812 KB
testcase_13 AC 178 ms
41,984 KB
testcase_14 AC 183 ms
42,044 KB
testcase_15 AC 188 ms
42,400 KB
testcase_16 AC 192 ms
42,544 KB
testcase_17 AC 189 ms
42,596 KB
testcase_18 AC 196 ms
43,124 KB
testcase_19 AC 191 ms
42,848 KB
testcase_20 AC 208 ms
43,616 KB
testcase_21 AC 214 ms
43,744 KB
testcase_22 AC 212 ms
44,364 KB
testcase_23 AC 223 ms
44,512 KB
testcase_24 AC 222 ms
46,304 KB
testcase_25 AC 233 ms
46,408 KB
testcase_26 AC 233 ms
46,328 KB
testcase_27 AC 137 ms
41,364 KB
testcase_28 AC 148 ms
41,208 KB
testcase_29 AC 177 ms
41,812 KB
testcase_30 AC 179 ms
42,216 KB
testcase_31 AC 188 ms
42,692 KB
testcase_32 AC 192 ms
42,948 KB
testcase_33 AC 201 ms
43,280 KB
testcase_34 AC 209 ms
44,528 KB
testcase_35 AC 226 ms
46,596 KB
testcase_36 AC 237 ms
46,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class yuki239 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner scan = new Scanner(System.in);
		int count = scan.nextInt();
		String[][] strArr = new String [count][count]; 
		int[][] intFlg = new int[count][count];
		int ans = 0;
		int ans3 = 0;

		Boolean ans_flg = false;
		
		for (int i = 0; i < count; i++) {
			for (int j = 0; j < count; j++) {
				strArr[i][j] = scan.next();
			}
		}
		
		for (int i = 0; i < count; i++) {
			for (int j = 0; j < count; j++) {
				
				if ("nyanpass".equals(strArr[j][i])){
					intFlg[i][j] = 3;
				} else if("-".equals(strArr[j][i]) ){
					intFlg[i][j] = 2;
				} else{
					intFlg[i][j] = 1;
				}
			}			
		}
		
		for (int i = 0; i < count; i++) {
						
			for (int j = 0; j < count; j++) {				
			
				if(intFlg[i][j] == 3){
					ans += 3;
				} else if (intFlg[i][j] == 2){
					ans += 2;
				} else {
					ans = -1;
				}
			}
			
			if(ans >= 7 && ans_flg == false){
				ans3 = i + 1;
				ans_flg = true;
			} else if(ans >= 7 && ans_flg == true){
				ans3 = -1;
				break;
			}			
			ans = 0;
			
		}
		if(ans_flg == true){
			System.out.print(ans3);
		}else {
			System.out.print(-1);
		}
		scan.close();

	}

}
0