結果

問題 No.706 多眼生物の調査
ユーザー caleicalei
提出日時 2020-01-24 15:54:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 10,724 KB
実行使用メモリ 8,744 KB
最終ジャッジ日時 2023-10-12 04:09:40
合計ジャッジ時間 938 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
8,392 KB
testcase_01 AC 19 ms
8,464 KB
testcase_02 AC 19 ms
8,596 KB
testcase_03 AC 19 ms
8,592 KB
testcase_04 AC 19 ms
8,356 KB
testcase_05 AC 20 ms
8,404 KB
testcase_06 WA -
testcase_07 AC 19 ms
8,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# yukicoder No.706 多眼生物の調査 2020/01/24

from collections import Counter

n=int(input())
s=Counter([input().count('^') for _ in range(n)])
print(s.most_common()[0][0])
0