結果

問題 No.29 パワーアップ
ユーザー qibqib
提出日時 2023-03-29 20:20:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-09-21 11:37:17
合計ジャッジ時間 1,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,332 KB
testcase_01 AC 34 ms
51,960 KB
testcase_02 AC 34 ms
53,212 KB
testcase_03 AC 34 ms
52,868 KB
testcase_04 AC 34 ms
52,688 KB
testcase_05 AC 35 ms
52,696 KB
testcase_06 AC 37 ms
52,688 KB
testcase_07 AC 35 ms
52,864 KB
testcase_08 AC 34 ms
52,196 KB
testcase_09 AC 36 ms
52,028 KB
testcase_10 AC 35 ms
52,808 KB
testcase_11 AC 35 ms
52,840 KB
testcase_12 AC 34 ms
52,628 KB
testcase_13 AC 34 ms
52,908 KB
testcase_14 AC 35 ms
52,404 KB
testcase_15 AC 36 ms
53,488 KB
testcase_16 AC 34 ms
53,108 KB
testcase_17 AC 33 ms
53,688 KB
testcase_18 AC 34 ms
52,836 KB
testcase_19 AC 36 ms
53,220 KB
testcase_20 AC 35 ms
52,864 KB
testcase_21 AC 35 ms
53,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

cnt = {}
for _ in range(n):
  a, b, c = map(int, input().split())
  cnt[a] = cnt.get(a, 0) + 1
  cnt[b] = cnt.get(b, 0) + 1
  cnt[c] = cnt.get(c, 0) + 1

ans = 0
for k, v in cnt.items():
  ans += v // 2
  cnt[k] %= 2

ans += sum(cnt.values()) // 4
print(ans)
0