結果

問題 No.239 にゃんぱすー
ユーザー naoe123naoe123
提出日時 2020-01-13 16:29:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,452 KB
最終ジャッジ日時 2024-05-10 02:30:11
合計ジャッジ時間 24,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 559 ms
44,320 KB
testcase_01 AC 548 ms
43,936 KB
testcase_02 AC 566 ms
44,316 KB
testcase_03 AC 547 ms
43,944 KB
testcase_04 AC 563 ms
43,928 KB
testcase_05 AC 575 ms
44,060 KB
testcase_06 AC 554 ms
44,192 KB
testcase_07 AC 570 ms
44,312 KB
testcase_08 AC 561 ms
44,324 KB
testcase_09 AC 564 ms
44,188 KB
testcase_10 AC 577 ms
43,804 KB
testcase_11 AC 561 ms
44,064 KB
testcase_12 AC 576 ms
44,060 KB
testcase_13 AC 547 ms
44,072 KB
testcase_14 AC 571 ms
44,452 KB
testcase_15 AC 555 ms
43,808 KB
testcase_16 AC 551 ms
43,932 KB
testcase_17 AC 569 ms
43,812 KB
testcase_18 AC 564 ms
44,072 KB
testcase_19 AC 554 ms
44,316 KB
testcase_20 AC 562 ms
43,940 KB
testcase_21 AC 571 ms
43,812 KB
testcase_22 AC 575 ms
44,064 KB
testcase_23 AC 588 ms
44,192 KB
testcase_24 AC 581 ms
44,316 KB
testcase_25 AC 566 ms
43,804 KB
testcase_26 AC 578 ms
44,196 KB
testcase_27 AC 565 ms
43,804 KB
testcase_28 AC 571 ms
43,812 KB
testcase_29 AC 556 ms
43,804 KB
testcase_30 AC 558 ms
44,064 KB
testcase_31 AC 569 ms
44,116 KB
testcase_32 AC 559 ms
44,056 KB
testcase_33 AC 590 ms
43,980 KB
testcase_34 AC 558 ms
44,192 KB
testcase_35 AC 560 ms
44,200 KB
testcase_36 AC 559 ms
44,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

b=np.array(a).T.tolist()

flag_list=[]
for i in b:
    flag=True
    for j in i:
        if j!='-' and j!='nyanpass':
            flag=False
            break
    flag_list.append(flag)

if flag_list.count(True)==1:
    print(flag_list.index(True)+1)
else:
    print(-1)

0