結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー ntudantuda
提出日時 2024-11-22 18:55:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,076 KB
最終ジャッジ日時 2024-11-22 18:55:28
合計ジャッジ時間 1,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
77,076 KB
testcase_01 AC 132 ms
76,928 KB
testcase_02 AC 129 ms
76,928 KB
testcase_03 AC 131 ms
76,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def check(x):
    n = N
    for v in dic.values():
        if v > x:
            n -= v - x
    return n >= 3 * x

for _ in range(int(input())):
    N = int(input())
    L = list(map(int, input().split()))
    dic = defaultdict(int)
    for l in L:
        dic[l] += 1
    lb = 0
    ub = N // 3 + 1
    while ub - lb > 1:
        mid = (ub + lb) // 2
        if check(mid):
            lb = mid
        else:
            ub = mid
    print(lb)
0