結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー kurenai3110kurenai3110
提出日時 2017-01-31 20:43:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 202 ms / 5,000 ms
コード長 518 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-06 10:22:43
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
10,752 KB
testcase_01 AC 202 ms
10,752 KB
testcase_02 AC 103 ms
10,624 KB
testcase_03 AC 202 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for i in range(t):
    n = int(input())
    L = list(map(int,input().split()))
    Lunique = list(set(L))
    if len(Lunique)<=2:
        print(0)
        continue

    cnt = [L.count(lu) for lu in Lunique]
    cnt.sort(reverse=True)

    ans=0
    while 1:
        for i in range(3):
            if cnt[i]==0:
                break
            cnt[i]-=1
        else:
            cnt.sort(reverse=True)
            ans+=1
            continue
        break

    print(ans)
            
        
    
0