結果
| 問題 | No.29 パワーアップ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-10-24 10:27:44 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 300 bytes |
| 記録 | |
| コンパイル時間 | 295 ms |
| コンパイル使用メモリ | 21,284 KB |
| 実行使用メモリ | 15,992 KB |
| 最終ジャッジ日時 | 2026-07-15 22:08:53 |
| 合計ジャッジ時間 | 3,732 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 WA * 14 |
ソースコード
n = int(input())
l = [list(map(int, input().split())) for _ in range(n)]
d = {}
for i in l:
for j in i:
if not j in d:
d[j] = 1
else:
d[j] += 1
l = list(d.values())
c = 0
for i in l:
if i > 1:
c += i//2
c1 = l.count(1)
c += c1 // 4
print(c)