結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | trineutron |
提出日時 | 2021-02-23 13:34:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 304 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-22 08:56:59 |
合計ジャッジ時間 | 1,077 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 93 ms
10,752 KB |
ソースコード
from collections import defaultdict def solve(): n = int(input()) l = list(map(int, input().split())) d = defaultdict(int) for x in l: d[x] += 1 v = list(d.values()) v.sort(reverse=True) print(min(n // 3, sum(v[2:]))) t = int(input()) for i in range(t): solve()