結果

問題 No.706 多眼生物の調査
ユーザー surprise_tanakasurprise_tanaka
提出日時 2018-11-16 03:08:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 415 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-12-24 14:08:05
合計ジャッジ時間 1,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
13,824 KB
testcase_01 AC 56 ms
13,952 KB
testcase_02 AC 54 ms
13,952 KB
testcase_03 AC 55 ms
13,824 KB
testcase_04 AC 55 ms
13,824 KB
testcase_05 AC 57 ms
13,824 KB
testcase_06 WA -
testcase_07 AC 54 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics

N = int(input())
S_list = []
for i in range(N):
    S_list.append(input().count("^"))
try:
    print(statistics.mode(S_list))
except:
    S_list.sort()
    max = 0
    count = 0
    for i in range(N-1):
        if S_list[i] == S_list[i+1]:
            count += 1
        else:
            count = 0
        if max <= count:
            max = count
            result = S_list[i]
    print(result)
0