結果

問題 No.239 にゃんぱすー
ユーザー fal_rndfal_rnd
提出日時 2017-08-08 17:42:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 78,040 KB
実行使用メモリ 46,736 KB
最終ジャッジ日時 2024-10-12 00:11:08
合計ジャッジ時間 9,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,044 KB
testcase_01 AC 124 ms
41,320 KB
testcase_02 AC 136 ms
40,996 KB
testcase_03 AC 124 ms
41,040 KB
testcase_04 AC 122 ms
41,264 KB
testcase_05 AC 126 ms
41,596 KB
testcase_06 AC 127 ms
41,304 KB
testcase_07 AC 129 ms
41,304 KB
testcase_08 AC 132 ms
41,452 KB
testcase_09 AC 134 ms
41,792 KB
testcase_10 AC 155 ms
41,168 KB
testcase_11 AC 171 ms
42,068 KB
testcase_12 AC 172 ms
42,088 KB
testcase_13 AC 178 ms
42,096 KB
testcase_14 AC 176 ms
42,488 KB
testcase_15 AC 176 ms
41,924 KB
testcase_16 AC 183 ms
42,388 KB
testcase_17 AC 189 ms
42,684 KB
testcase_18 AC 191 ms
42,752 KB
testcase_19 AC 195 ms
43,224 KB
testcase_20 AC 190 ms
43,660 KB
testcase_21 AC 206 ms
44,364 KB
testcase_22 AC 202 ms
44,164 KB
testcase_23 AC 217 ms
44,952 KB
testcase_24 AC 209 ms
45,824 KB
testcase_25 AC 226 ms
46,736 KB
testcase_26 AC 225 ms
45,844 KB
testcase_27 AC 135 ms
41,396 KB
testcase_28 AC 163 ms
41,568 KB
testcase_29 AC 158 ms
42,144 KB
testcase_30 AC 173 ms
42,064 KB
testcase_31 AC 177 ms
42,516 KB
testcase_32 AC 193 ms
42,952 KB
testcase_33 AC 197 ms
43,756 KB
testcase_34 AC 207 ms
44,288 KB
testcase_35 AC 212 ms
45,564 KB
testcase_36 AC 229 ms
46,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,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