結果

問題 No.239 にゃんぱすー
ユーザー yagi2yagi2
提出日時 2017-04-20 16:17:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 662 bytes
コンパイル時間 2,440 ms
コンパイル使用メモリ 78,528 KB
実行使用メモリ 46,528 KB
最終ジャッジ日時 2024-07-19 21:04:20
合計ジャッジ時間 10,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,284 KB
testcase_01 AC 125 ms
41,012 KB
testcase_02 AC 129 ms
41,504 KB
testcase_03 AC 132 ms
41,412 KB
testcase_04 AC 127 ms
41,084 KB
testcase_05 WA -
testcase_06 AC 128 ms
41,272 KB
testcase_07 AC 130 ms
41,368 KB
testcase_08 AC 134 ms
41,592 KB
testcase_09 AC 143 ms
41,176 KB
testcase_10 AC 168 ms
41,460 KB
testcase_11 WA -
testcase_12 AC 178 ms
41,828 KB
testcase_13 AC 172 ms
41,652 KB
testcase_14 AC 184 ms
42,108 KB
testcase_15 AC 181 ms
42,396 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 198 ms
43,356 KB
testcase_21 WA -
testcase_22 AC 208 ms
44,212 KB
testcase_23 AC 208 ms
44,568 KB
testcase_24 AC 218 ms
45,632 KB
testcase_25 AC 221 ms
45,956 KB
testcase_26 WA -
testcase_27 AC 133 ms
40,968 KB
testcase_28 AC 157 ms
41,312 KB
testcase_29 AC 168 ms
41,656 KB
testcase_30 AC 174 ms
42,036 KB
testcase_31 AC 184 ms
42,300 KB
testcase_32 AC 192 ms
43,156 KB
testcase_33 WA -
testcase_34 AC 203 ms
44,008 KB
testcase_35 AC 221 ms
45,484 KB
testcase_36 AC 230 ms
46,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = Integer.parseInt(sc.next());

        Set<Integer> renchon = new HashSet<>();
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < N; j++) {
                String s = sc.next();
                if (s.equals("nyanpass")) renchon.add(j+1);
            }
        }

        if (renchon.size() > 1 || renchon.size() == 0) {
            System.out.println("-1");
        } else {
            renchon.forEach(System.out::println);
        }
    }
}
0