結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | ktshun |
提出日時 | 2015-06-11 23:02:05 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 451 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,912 KB |
最終ジャッジ日時 | 2024-07-06 15:46:56 |
合計ジャッジ時間 | 988 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
# -*- coding:utf-8 -*- import collections def solve(): n = input() L = map(int,raw_input().split()) cnt = collections.Counter(L) if len(set(L)) < 3: print 0 return no1 = cnt.most_common(1)[0][1] if no1 <= n /3.0: print n / 3 return else: no2 = cnt.most_common(2)[1][1] if no2 > n - no1: print n - no1 - no2 return else: print (n-no1) / 2 return if __name__ == "__main__": t = input() for i in xrange(t): solve()