結果

問題 No.349 干支の置き物
ユーザー ABKZABKZ
提出日時 2023-02-07 22:31:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 55,652 KB
最終ジャッジ日時 2024-07-05 16:31:41
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,444 KB
testcase_01 AC 43 ms
54,204 KB
testcase_02 AC 43 ms
54,656 KB
testcase_03 AC 42 ms
54,908 KB
testcase_04 WA -
testcase_05 AC 44 ms
53,760 KB
testcase_06 AC 42 ms
53,584 KB
testcase_07 AC 43 ms
54,020 KB
testcase_08 AC 42 ms
53,928 KB
testcase_09 AC 43 ms
54,740 KB
testcase_10 AC 42 ms
54,404 KB
testcase_11 AC 43 ms
54,416 KB
testcase_12 WA -
testcase_13 AC 42 ms
53,812 KB
testcase_14 AC 42 ms
54,556 KB
testcase_15 AC 43 ms
54,512 KB
testcase_16 AC 42 ms
54,448 KB
testcase_17 AC 41 ms
53,720 KB
testcase_18 AC 43 ms
54,240 KB
testcase_19 AC 41 ms
55,316 KB
testcase_20 AC 42 ms
54,292 KB
testcase_21 AC 42 ms
54,552 KB
testcase_22 AC 42 ms
54,532 KB
testcase_23 AC 43 ms
54,524 KB
testcase_24 AC 45 ms
53,744 KB
testcase_25 AC 43 ms
54,980 KB
testcase_26 AC 44 ms
54,268 KB
testcase_27 AC 42 ms
53,988 KB
testcase_28 AC 43 ms
54,252 KB
testcase_29 AC 42 ms
54,000 KB
testcase_30 AC 42 ms
53,864 KB
testcase_31 AC 43 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N = int(input())
A = [input() for _ in range(N)]


_, cnts = zip(*collections.Counter(A).most_common())

if len(cnts) == 1:
    if cnts[0] == 1:
        print("YES")
    else:
        print("NO")
else:
    wk = 0
    for x in reversed(cnts):
        if wk != 0 and wk+1 < x:
            print("NO")
            break
        wk += x
    else:
        print("YES")
0