結果

問題 No.239 にゃんぱすー
ユーザー yumechiyumechi
提出日時 2015-08-06 22:39:26
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 275 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 64,232 KB
最終ジャッジ日時 2024-07-18 03:47:04
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,876 KB
testcase_01 AC 31 ms
53,272 KB
testcase_02 AC 32 ms
52,248 KB
testcase_03 AC 33 ms
52,876 KB
testcase_04 AC 34 ms
52,128 KB
testcase_05 AC 34 ms
52,284 KB
testcase_06 AC 32 ms
52,616 KB
testcase_07 AC 33 ms
53,060 KB
testcase_08 AC 32 ms
53,008 KB
testcase_09 AC 33 ms
53,168 KB
testcase_10 AC 33 ms
52,672 KB
testcase_11 AC 32 ms
53,184 KB
testcase_12 AC 33 ms
52,952 KB
testcase_13 AC 36 ms
58,780 KB
testcase_14 AC 42 ms
62,420 KB
testcase_15 AC 38 ms
59,172 KB
testcase_16 AC 37 ms
59,376 KB
testcase_17 AC 36 ms
58,916 KB
testcase_18 AC 37 ms
59,588 KB
testcase_19 MLE -
testcase_20 AC 39 ms
60,172 KB
testcase_21 AC 38 ms
60,176 KB
testcase_22 AC 45 ms
63,304 KB
testcase_23 AC 39 ms
60,384 KB
testcase_24 AC 39 ms
59,956 KB
testcase_25 AC 39 ms
60,300 KB
testcase_26 AC 38 ms
60,792 KB
testcase_27 AC 32 ms
52,684 KB
testcase_28 AC 34 ms
53,448 KB
testcase_29 AC 33 ms
52,268 KB
testcase_30 AC 42 ms
62,440 KB
testcase_31 AC 38 ms
58,604 KB
testcase_32 AC 37 ms
58,624 KB
testcase_33 AC 36 ms
59,256 KB
testcase_34 AC 44 ms
63,112 KB
testcase_35 AC 38 ms
60,388 KB
testcase_36 AC 39 ms
61,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
renchon = "nyanpass"
tab = [0 for _ in range(n)]
for _ in range(n):
    sli = input().split()
    for i in range(n):
        if sli[i] == renchon:
            tab[i] += 1

mn = max(tab)
print((tab.index(mn) + 1) if tab.count(mn) == 1 and mn == n - 1 else -1)
0