結果

問題 No.239 にゃんぱすー
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-10 21:41:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 3,707 ms
コンパイル使用メモリ 80,280 KB
実行使用メモリ 46,988 KB
最終ジャッジ日時 2024-07-18 06:34:44
合計ジャッジ時間 11,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,172 KB
testcase_01 AC 132 ms
41,176 KB
testcase_02 AC 131 ms
41,316 KB
testcase_03 AC 118 ms
40,168 KB
testcase_04 AC 131 ms
41,248 KB
testcase_05 AC 117 ms
40,432 KB
testcase_06 AC 132 ms
41,512 KB
testcase_07 AC 136 ms
41,492 KB
testcase_08 AC 140 ms
41,404 KB
testcase_09 AC 144 ms
41,568 KB
testcase_10 AC 155 ms
41,712 KB
testcase_11 AC 174 ms
41,784 KB
testcase_12 AC 178 ms
42,364 KB
testcase_13 AC 178 ms
42,440 KB
testcase_14 AC 187 ms
42,528 KB
testcase_15 AC 180 ms
42,512 KB
testcase_16 AC 184 ms
42,696 KB
testcase_17 AC 197 ms
42,980 KB
testcase_18 AC 199 ms
43,324 KB
testcase_19 AC 203 ms
43,520 KB
testcase_20 AC 201 ms
43,912 KB
testcase_21 AC 213 ms
44,540 KB
testcase_22 AC 214 ms
44,736 KB
testcase_23 AC 218 ms
45,076 KB
testcase_24 AC 227 ms
46,628 KB
testcase_25 AC 232 ms
46,628 KB
testcase_26 AC 236 ms
46,988 KB
testcase_27 AC 142 ms
41,804 KB
testcase_28 AC 154 ms
41,912 KB
testcase_29 AC 174 ms
42,308 KB
testcase_30 AC 186 ms
41,920 KB
testcase_31 AC 182 ms
42,380 KB
testcase_32 AC 190 ms
43,056 KB
testcase_33 AC 211 ms
44,064 KB
testcase_34 AC 213 ms
44,444 KB
testcase_35 AC 227 ms
46,720 KB
testcase_36 AC 240 ms
46,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0239 {
	
	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int n = in.nextInt();
		String[][] a = new String[n][n];
		for (int i=0; i<n; i++) {
			for (int j=0; j<n; j++) {
				a[i][j] = in.next();
			}
		}

		int ans = -2;

		for (int i=0; i<n; i++) {
			boolean f = true;
			for (int j=0; j<n; j++) {
				if (!a[j][i].equals("-") && !a[j][i].equals("nyanpass")) {
					f = false;
				}
			}

			if (f) {
				if (ans == -2) {
					ans = i+1;
				}else {
					ans = -1;
				}
			}
		}

		out.println(ans < 0 ? "-1" : ans);
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0