結果

問題 No.358 も~っと!門松列
ユーザー rocoder
提出日時 2017-06-17 16:56:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 355 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-01 11:26:48
合計ジャッジ時間 1,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#nyanpass
N=int(input())
a=[[i for i in input().split()] for i in range(N)]
R=[0]
i=1
while i <N:
    if a[0][i]=="nyanpass":
        R.append(i)
    i+=1
i=1
while i<N and len(R)>0:
    j=0
    while j<len(R):
        if a[i][R[j]]!="nyanpass":
            R.pop(j)
            j-=1
        j+=1
    i+=1
if len(R)!=1:
    print(-1)
else:
    print(R[0])
0