結果

問題 No.239 にゃんぱすー
ユーザー hanorver
提出日時 2015-11-30 12:38:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 172 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-14 05:21:59
合計ジャッジ時間 2,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 31 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

i=int(input())
l=[0]*i

for j in range(i):
 for k,e in enumerate(input().split()):
  if e=="nyanpass":l[k]+=1

if l.count(max(l))!=1:print(-1)
else:print(l.index(max(l))+1)
0