結果

問題 No.239 にゃんぱすー
ユーザー _KingdomOfMoray_KingdomOfMoray
提出日時 2019-12-03 22:07:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,076 KB
最終ジャッジ日時 2024-05-05 20:13:52
合計ジャッジ時間 21,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 458 ms
43,440 KB
testcase_01 AC 449 ms
43,832 KB
testcase_02 AC 449 ms
43,432 KB
testcase_03 AC 475 ms
43,472 KB
testcase_04 AC 450 ms
43,432 KB
testcase_05 AC 453 ms
43,440 KB
testcase_06 AC 471 ms
43,944 KB
testcase_07 AC 455 ms
43,952 KB
testcase_08 AC 475 ms
44,076 KB
testcase_09 AC 483 ms
43,824 KB
testcase_10 AC 483 ms
43,688 KB
testcase_11 AC 480 ms
43,816 KB
testcase_12 AC 473 ms
44,076 KB
testcase_13 AC 478 ms
43,696 KB
testcase_14 AC 482 ms
44,072 KB
testcase_15 AC 452 ms
43,816 KB
testcase_16 AC 467 ms
43,820 KB
testcase_17 AC 463 ms
44,072 KB
testcase_18 AC 473 ms
43,988 KB
testcase_19 AC 471 ms
43,948 KB
testcase_20 AC 469 ms
43,564 KB
testcase_21 AC 459 ms
43,944 KB
testcase_22 AC 476 ms
43,576 KB
testcase_23 AC 463 ms
43,560 KB
testcase_24 AC 469 ms
43,432 KB
testcase_25 AC 463 ms
43,448 KB
testcase_26 AC 452 ms
43,444 KB
testcase_27 AC 459 ms
43,944 KB
testcase_28 AC 480 ms
43,568 KB
testcase_29 AC 460 ms
43,700 KB
testcase_30 AC 462 ms
43,820 KB
testcase_31 AC 469 ms
43,960 KB
testcase_32 AC 466 ms
43,824 KB
testcase_33 AC 473 ms
43,952 KB
testcase_34 AC 459 ms
43,696 KB
testcase_35 AC 453 ms
43,692 KB
testcase_36 AC 464 ms
43,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import collections

n = int(input())
a = [input().split() for l in range(n)]

arr_a = np.array(a)

renindex = []

for i in range(arr_a.shape[0]):
    for j in range(arr_a.shape[1]):
        if arr_a[i][j] == 'nyanpass':
            renindex.append(j)
            
cl = collections.Counter(renindex)

renkeys = [k for k, v in cl.items() if v == n-1]

if len(renkeys) == 1:
    print(renkeys[0] + 1)
else:
    print(-1)
0