結果

問題 No.349 干支の置き物
ユーザー 阿部祥紀阿部祥紀
提出日時 2024-04-09 14:40:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 17:50:21
合計ジャッジ時間 2,613 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 24 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
def main():
    n=int(input())
    a=[input() for _ in range(n)]
    count=collections.Counter(a)
    if count.most_common()[0][1] > (n+1)/2:
        print(count)
        print(count.most_common()[0][1])
        print("NO")
    else:
        print("YES")

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