結果

問題 No.239 にゃんぱすー
ユーザー ngtkana
提出日時 2020-02-24 02:09:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-11 01:11:01
合計ジャッジ時間 2,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=-1
is_renchon=[True]*n
for i in range(n):
    for (j,s) in enumerate(input().split()):
        if i==j:
            continue
        if s!="nyanpass":
            is_renchon[j]=False

a=-1
for i in range(n):
    if is_renchon[i]:
        if a==-1:
            a=i+1
        else:
            print(-1)
            exit()
print(a)
0