結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー roiti46roiti46
提出日時 2015-02-10 00:35:13
言語 Python2
(2.7.18)
結果
AC  
実行時間 350 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-23 16:53:27
合計ジャッジ時間 1,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
6,400 KB
testcase_01 AC 324 ms
6,528 KB
testcase_02 AC 137 ms
6,528 KB
testcase_03 AC 350 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(raw_input())
for loop in xrange(T):
    N = int(raw_input())
    L = map(int,raw_input().split())
    L = sorted([[L.count(i),i] for i in set(L)])[::-1]
    ans = 0
    while len(L) >= 3:
        for i in range(3)[::-1]:
            L[i][0] -= 1
            if L[i][0] == 0:
                L.pop(i)
        L = sorted(L)[::-1]
        ans += 1
    print ans
0