結果

問題 No.706 多眼生物の調査
ユーザー tarotaro789tarotaro789
提出日時 2018-07-07 17:13:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 383 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-04 20:09:18
合計ジャッジ時間 1,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 38 ms
10,624 KB
testcase_05 AC 83 ms
10,880 KB
testcase_06 WA -
testcase_07 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
n=int(input())
ls=[]
for i in range(n):
    ls.append(input())
cnt=0
cls=[]
for j in range(n):
    for i in range(len(ls[j])):
        if ls[j][i]=="^":
            cnt=cnt+1
        if ls[j][i]==")":
            cls.append(cnt)
            cnt=0

c=collections.Counter(cls)
mx=0
for num,cont in c.most_common():
    if mx<cont:
        mx=cont
        print(num)
0