結果

問題 No.239 にゃんぱすー
ユーザー _KingdomOfMoray_KingdomOfMoray
提出日時 2019-12-03 22:07:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 436 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 85,948 KB
最終ジャッジ日時 2024-11-27 21:03:59
合計ジャッジ時間 25,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 671 ms
43,696 KB
testcase_01 AC 548 ms
43,980 KB
testcase_02 AC 538 ms
43,824 KB
testcase_03 AC 531 ms
43,696 KB
testcase_04 AC 541 ms
43,948 KB
testcase_05 AC 546 ms
43,436 KB
testcase_06 AC 540 ms
44,084 KB
testcase_07 AC 543 ms
44,212 KB
testcase_08 AC 541 ms
44,204 KB
testcase_09 AC 536 ms
43,876 KB
testcase_10 AC 543 ms
43,832 KB
testcase_11 AC 553 ms
43,436 KB
testcase_12 AC 533 ms
43,704 KB
testcase_13 AC 536 ms
43,800 KB
testcase_14 AC 541 ms
43,560 KB
testcase_15 AC 541 ms
43,448 KB
testcase_16 AC 546 ms
43,824 KB
testcase_17 AC 545 ms
43,696 KB
testcase_18 AC 542 ms
43,832 KB
testcase_19 AC 550 ms
44,216 KB
testcase_20 AC 546 ms
43,828 KB
testcase_21 AC 546 ms
43,440 KB
testcase_22 AC 553 ms
43,692 KB
testcase_23 AC 546 ms
43,820 KB
testcase_24 AC 546 ms
43,616 KB
testcase_25 AC 542 ms
44,076 KB
testcase_26 AC 557 ms
43,948 KB
testcase_27 AC 548 ms
43,952 KB
testcase_28 AC 548 ms
43,700 KB
testcase_29 AC 539 ms
43,696 KB
testcase_30 AC 544 ms
43,820 KB
testcase_31 AC 535 ms
43,572 KB
testcase_32 AC 556 ms
43,944 KB
testcase_33 AC 539 ms
43,436 KB
testcase_34 AC 541 ms
43,572 KB
testcase_35 AC 541 ms
43,440 KB
testcase_36 MLE -
権限があれば一括ダウンロードができます

ソースコード

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