結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | FromBooska |
提出日時 | 2023-08-10 06:58:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 357 ms / 5,000 ms |
コード長 | 790 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 81,036 KB |
最終ジャッジ日時 | 2024-11-16 08:24:09 |
合計ジャッジ時間 | 2,549 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 321 ms
79,564 KB |
testcase_01 | AC | 357 ms
81,036 KB |
testcase_02 | AC | 268 ms
79,308 KB |
testcase_03 | AC | 307 ms
80,132 KB |
ソースコード
# 3つの数が異なれば門松列は作れる # ある数が多数ある場合はそれから使うのがいい T = int(input()) for t in range(T): N = int(input()) L = list(map(int, input().split())) from collections import Counter counted = Counter(L) from heapq import * H = [] heapify(H) for n in counted: heappush(H, -counted[n]) ans = 0 while True: if len(H) < 3: break else: k1 = heappop(H) k2 = heappop(H) k3 = heappop(H) ans += 1 if k1 < -1: heappush(H, k1+1) if k2 < -1: heappush(H, k2+1) if k3 < -1: heappush(H, k3+1) #print('ans', ans, 'H', H) print(ans)