結果

問題 No.706 多眼生物の調査
ユーザー kept1994kept1994
提出日時 2022-05-04 19:38:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 65,268 KB
最終ジャッジ日時 2024-07-03 22:47:21
合計ジャッジ時間 1,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,276 KB
testcase_01 AC 37 ms
53,212 KB
testcase_02 AC 37 ms
52,276 KB
testcase_03 AC 39 ms
52,940 KB
testcase_04 AC 41 ms
54,224 KB
testcase_05 AC 46 ms
56,416 KB
testcase_06 AC 54 ms
65,268 KB
testcase_07 AC 39 ms
52,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    l = [0] * 1000
    for _ in range(N):
        s = input()
        l[len(s[1:-1])] += 1
    m = max(l)
    print(999 - l[::-1].index(m))
    return
        

if __name__ == '__main__':
    main()
0