結果

問題 No.239 にゃんぱすー
ユーザー naoe123naoe123
提出日時 2020-01-13 16:29:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,584 KB
最終ジャッジ日時 2024-12-17 22:42:45
合計ジャッジ時間 20,837 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 494 ms
44,196 KB
testcase_01 AC 495 ms
43,936 KB
testcase_02 AC 530 ms
44,308 KB
testcase_03 AC 501 ms
43,936 KB
testcase_04 AC 497 ms
44,064 KB
testcase_05 AC 502 ms
44,068 KB
testcase_06 AC 493 ms
44,188 KB
testcase_07 AC 500 ms
44,192 KB
testcase_08 AC 503 ms
44,316 KB
testcase_09 AC 520 ms
43,936 KB
testcase_10 AC 516 ms
44,320 KB
testcase_11 AC 519 ms
44,452 KB
testcase_12 AC 520 ms
44,192 KB
testcase_13 AC 508 ms
43,936 KB
testcase_14 AC 513 ms
44,196 KB
testcase_15 AC 490 ms
43,928 KB
testcase_16 AC 480 ms
44,196 KB
testcase_17 AC 491 ms
43,936 KB
testcase_18 AC 504 ms
43,932 KB
testcase_19 AC 493 ms
43,936 KB
testcase_20 AC 496 ms
43,936 KB
testcase_21 AC 496 ms
44,064 KB
testcase_22 AC 495 ms
44,300 KB
testcase_23 AC 501 ms
44,288 KB
testcase_24 AC 498 ms
43,936 KB
testcase_25 AC 512 ms
43,932 KB
testcase_26 AC 514 ms
43,932 KB
testcase_27 AC 506 ms
44,196 KB
testcase_28 AC 506 ms
44,452 KB
testcase_29 AC 498 ms
43,936 KB
testcase_30 AC 504 ms
44,196 KB
testcase_31 AC 486 ms
44,192 KB
testcase_32 AC 506 ms
43,928 KB
testcase_33 AC 498 ms
44,196 KB
testcase_34 AC 507 ms
44,584 KB
testcase_35 AC 511 ms
44,456 KB
testcase_36 AC 537 ms
44,184 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