結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,000 KB
testcase_01 AC 136 ms
41,132 KB
testcase_02 AC 134 ms
41,240 KB
testcase_03 AC 134 ms
41,172 KB
testcase_04 AC 131 ms
41,332 KB
testcase_05 AC 130 ms
40,952 KB
testcase_06 AC 131 ms
41,260 KB
testcase_07 AC 134 ms
41,392 KB
testcase_08 AC 138 ms
41,352 KB
testcase_09 AC 144 ms
41,280 KB
testcase_10 AC 159 ms
41,608 KB
testcase_11 AC 172 ms
41,744 KB
testcase_12 AC 175 ms
41,704 KB
testcase_13 AC 177 ms
42,116 KB
testcase_14 AC 190 ms
41,888 KB
testcase_15 AC 184 ms
42,304 KB
testcase_16 AC 194 ms
42,320 KB
testcase_17 AC 195 ms
42,616 KB
testcase_18 AC 198 ms
42,564 KB
testcase_19 AC 200 ms
43,476 KB
testcase_20 AC 203 ms
43,572 KB
testcase_21 AC 207 ms
43,644 KB
testcase_22 AC 218 ms
44,380 KB
testcase_23 AC 220 ms
44,284 KB
testcase_24 AC 229 ms
45,924 KB
testcase_25 AC 227 ms
46,016 KB
testcase_26 AC 239 ms
46,020 KB
testcase_27 AC 140 ms
41,460 KB
testcase_28 AC 174 ms
41,812 KB
testcase_29 AC 181 ms
41,760 KB
testcase_30 AC 181 ms
41,920 KB
testcase_31 AC 196 ms
42,492 KB
testcase_32 AC 199 ms
42,788 KB
testcase_33 AC 206 ms
43,260 KB
testcase_34 AC 214 ms
44,320 KB
testcase_35 AC 226 ms
45,384 KB
testcase_36 AC 236 ms
46,236 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?r.get(0):-1
				);
	}
}
0