結果
| 問題 | No.29 パワーアップ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-06-01 14:25:34 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 65 ms / 5,000 ms |
| + 321µs | |
| コード長 | 315 bytes |
| 記録 | |
| コンパイル時間 | 68 ms |
| コンパイル使用メモリ | 80,896 KB |
| 実行使用メモリ | 81,024 KB |
| 最終ジャッジ日時 | 2026-07-17 15:59:17 |
| 合計ジャッジ時間 | 3,237 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
# -*- coding:utf-8 -*- import collections if __name__ == "__main__": n = input() items = [] for i in xrange(n): items += map(int,raw_input().split()) count = collections.Counter(items) ans = 0 amari = 0 for item, cnt in count.most_common(): ans += cnt //2 amari += cnt % 2 ans += amari //4 print ans