結果

問題 No.29 パワーアップ
ユーザー miya145592miya145592
提出日時 2023-05-03 23:41:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 53,892 KB
最終ジャッジ日時 2024-05-01 17:14:08
合計ジャッジ時間 2,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,916 KB
testcase_01 AC 39 ms
51,944 KB
testcase_02 AC 40 ms
52,360 KB
testcase_03 AC 40 ms
52,196 KB
testcase_04 AC 40 ms
53,096 KB
testcase_05 AC 40 ms
52,620 KB
testcase_06 AC 40 ms
52,492 KB
testcase_07 AC 38 ms
53,072 KB
testcase_08 AC 39 ms
52,828 KB
testcase_09 AC 39 ms
53,148 KB
testcase_10 AC 40 ms
52,868 KB
testcase_11 AC 40 ms
53,708 KB
testcase_12 AC 38 ms
52,260 KB
testcase_13 AC 39 ms
52,944 KB
testcase_14 AC 38 ms
53,196 KB
testcase_15 AC 39 ms
52,856 KB
testcase_16 AC 38 ms
53,892 KB
testcase_17 AC 38 ms
52,252 KB
testcase_18 AC 39 ms
52,768 KB
testcase_19 AC 39 ms
52,204 KB
testcase_20 AC 40 ms
52,568 KB
testcase_21 AC 40 ms
53,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ABC = [list(map(int, input().split())) for _ in range(N)]
D = [0 for _ in range(11)]
for a, b, c in ABC:
    D[a]+=1
    D[b]+=1
    D[c]+=1
cnt = 0
for i in range(1, 11):
    cnt+=D[i]//2
    D[i]%=2
S = sum(D)
cnt+=S//4
print(cnt)
0