結果

問題 No.706 多眼生物の調査
ユーザー rlangevinrlangevin
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,964 KB
testcase_01 AC 42 ms
53,240 KB
testcase_02 AC 42 ms
53,656 KB
testcase_03 AC 40 ms
55,484 KB
testcase_04 AC 41 ms
57,588 KB
testcase_05 AC 49 ms
66,060 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,520 KB
権限があれば一括ダウンロードができます

ソースコード

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