結果
問題 |
No.239 にゃんぱすー
|
ユーザー |
![]() |
提出日時 | 2017-06-18 09:50:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 359 bytes |
コンパイル時間 | 132 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-10-01 19:32:14 |
合計ジャッジ時間 | 2,292 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 33 |
ソースコード
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" and i!=R[j]: R.pop(j) j-=1 j+=1 i+=1 if len(R)!=1: print(-1) else: print(R[0]+1)