結果

問題 No.239 にゃんぱすー
ユーザー kano_townkano_town
提出日時 2015-07-13 16:09:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 3,046 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 46,204 KB
最終ジャッジ日時 2024-07-08 07:02:15
合計ジャッジ時間 9,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,976 KB
testcase_01 AC 100 ms
39,768 KB
testcase_02 AC 111 ms
41,104 KB
testcase_03 AC 109 ms
41,104 KB
testcase_04 AC 97 ms
39,540 KB
testcase_05 AC 108 ms
41,228 KB
testcase_06 AC 92 ms
39,736 KB
testcase_07 AC 113 ms
40,904 KB
testcase_08 AC 117 ms
41,176 KB
testcase_09 AC 121 ms
41,000 KB
testcase_10 AC 133 ms
41,368 KB
testcase_11 AC 140 ms
41,264 KB
testcase_12 AC 162 ms
42,080 KB
testcase_13 AC 155 ms
41,852 KB
testcase_14 AC 163 ms
42,012 KB
testcase_15 AC 156 ms
42,200 KB
testcase_16 AC 170 ms
42,576 KB
testcase_17 AC 158 ms
42,700 KB
testcase_18 AC 174 ms
43,052 KB
testcase_19 AC 178 ms
43,516 KB
testcase_20 AC 190 ms
43,808 KB
testcase_21 AC 182 ms
43,728 KB
testcase_22 AC 179 ms
44,264 KB
testcase_23 AC 180 ms
44,784 KB
testcase_24 AC 193 ms
45,560 KB
testcase_25 AC 197 ms
46,008 KB
testcase_26 AC 200 ms
46,008 KB
testcase_27 AC 118 ms
41,356 KB
testcase_28 AC 122 ms
41,128 KB
testcase_29 AC 146 ms
41,828 KB
testcase_30 AC 151 ms
41,716 KB
testcase_31 AC 152 ms
42,676 KB
testcase_32 AC 169 ms
42,384 KB
testcase_33 AC 173 ms
43,356 KB
testcase_34 AC 178 ms
44,168 KB
testcase_35 AC 183 ms
45,492 KB
testcase_36 AC 194 ms
46,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yukicoder239 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt(), res = -1;
        int cnt[] = new int[n];
        for (int i = 0; i < n; i++) 
            for (int j = 0; j < n; j++) 
                if (sc.next().equals("nyanpass")) 
                    cnt[j]++;
        for (int j = 0; j < n; j++) {
            if (cnt[j] == n-1) {
                if (res == -1) {
                    res = j + 1;
                } else {
                    res = -1;
                    break;
                }
            }
        }
        System.out.println(res);
    }
}
0