結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー H3PO4
提出日時 2020-04-29 19:06:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 543 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-29 13:52:11
合計ジャッジ時間 1,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import heapq

T = int(input())
for _ in range(T):
    N = int(input())
    L = Counter(map(int, input().split())).values()
    V = [-x for x in L]
    heapq.heapify(V)
    
    ans = 0
    tmp_lst = [0] * 3
    while True:
        try:
            for i in range(3):
                tmp_lst[i] = heapq.heappop(V)
            ans += 1
        except IndexError:
            print(ans)
            break
        for i in range(3):
            if tmp_lst[i] < -1:
                heapq.heappush(V, tmp_lst[i] + 1)
0