結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー nebukuro09nebukuro09
提出日時 2016-10-30 17:37:26
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 383 ms / 5,000 ms
コード長 487 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 76,588 KB
実行使用メモリ 82,912 KB
最終ジャッジ日時 2024-05-03 19:54:14
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 383 ms
82,912 KB
testcase_01 AC 285 ms
82,088 KB
testcase_02 AC 254 ms
81,216 KB
testcase_03 AC 292 ms
81,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import heapq

def solve():
    N = int(raw_input())
    L = map(int, raw_input().split())
    L = [-v for v in Counter(L).values()]
    heapq.heapify(L)
    ans = 0
    while len(L) >= 3:
        a, b, c = heapq.heappop(L), heapq.heappop(L), heapq.heappop(L)
        ans += 1
        if a < -1: heapq.heappush(L, a+1)
        if b < -1: heapq.heappush(L, b+1)
        if c < -1: heapq.heappush(L, c+1)
    print ans

for _ in xrange(input()):
    solve()
0