結果

問題 No.706 多眼生物の調査
ユーザー rlangevin
提出日時 2024-07-18 08:59:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 75,016 KB
最終ジャッジ日時 2024-07-18 08:59:26
合計ジャッジ時間 1,176 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
N = int(input())
C = Counter()
for i in range(N):
    C[list(input()).count("^")] += 1
    
print(C.most_common()[0][0])
0