結果

問題 No.239 にゃんぱすー
ユーザー fal_rndfal_rnd
提出日時 2017-08-08 17:44:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 2,744 ms
コンパイル使用メモリ 88,328 KB
実行使用メモリ 46,252 KB
最終ジャッジ日時 2024-10-12 00:11:31
合計ジャッジ時間 10,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,168 KB
testcase_01 AC 134 ms
41,316 KB
testcase_02 AC 134 ms
41,372 KB
testcase_03 AC 134 ms
41,232 KB
testcase_04 AC 132 ms
41,276 KB
testcase_05 AC 134 ms
41,240 KB
testcase_06 AC 134 ms
41,056 KB
testcase_07 AC 135 ms
41,352 KB
testcase_08 AC 142 ms
40,980 KB
testcase_09 AC 148 ms
41,496 KB
testcase_10 AC 159 ms
41,704 KB
testcase_11 AC 179 ms
41,820 KB
testcase_12 AC 188 ms
42,012 KB
testcase_13 AC 181 ms
42,124 KB
testcase_14 AC 177 ms
42,116 KB
testcase_15 AC 194 ms
42,352 KB
testcase_16 AC 198 ms
42,492 KB
testcase_17 AC 195 ms
42,548 KB
testcase_18 AC 195 ms
42,904 KB
testcase_19 AC 204 ms
42,904 KB
testcase_20 AC 210 ms
43,732 KB
testcase_21 AC 212 ms
44,640 KB
testcase_22 AC 216 ms
44,272 KB
testcase_23 AC 222 ms
45,156 KB
testcase_24 AC 224 ms
46,032 KB
testcase_25 AC 227 ms
46,128 KB
testcase_26 AC 236 ms
46,080 KB
testcase_27 AC 139 ms
41,288 KB
testcase_28 AC 172 ms
41,844 KB
testcase_29 AC 177 ms
42,208 KB
testcase_30 AC 188 ms
42,156 KB
testcase_31 AC 185 ms
42,352 KB
testcase_32 AC 196 ms
43,156 KB
testcase_33 AC 207 ms
43,404 KB
testcase_34 AC 212 ms
44,096 KB
testcase_35 AC 221 ms
45,608 KB
testcase_36 AC 245 ms
46,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.List;
import java.util.Scanner;
import java.util.stream.Collectors;
import java.util.stream.IntStream;

public class Main{
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static class Pair<T,U>{
		T l;U r;
		Pair(T L,U R){l=L;r=R;}
		T getL(){return l;}
		U getR(){return r;}
	}

	public static void main(String[]$){
		int n=getInt();
		List<Integer>r=REPS(1,n).boxed().collect(Collectors.toList());

		for(int l=0;l<n;++l) for(int i=1;i<=n;++i){
			String in=s.next();
			if(!(in.equals("-")||in.equals("nyanpass"))) {
				r.remove(Integer.valueOf(i));
			}
		}
		System.out.println(
				r.size()==1?(int)r.get(0):-1
				);
	}
}
0