結果

問題 No.239 にゃんぱすー
ユーザー rocoder
提出日時 2017-06-18 06:18:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-10-01 12:45:39
合計ジャッジ時間 2,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 3
other AC * 16 WA * 17
権限があれば一括ダウンロードができます

ソースコード

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