結果

問題 No.29 パワーアップ
ユーザー miho-4miho-4
提出日時 2023-08-12 17:32:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 180 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-04-30 12:38:54
合計ジャッジ時間 1,916 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,120 KB
testcase_01 AC 32 ms
52,996 KB
testcase_02 AC 32 ms
52,932 KB
testcase_03 AC 33 ms
53,816 KB
testcase_04 AC 32 ms
52,672 KB
testcase_05 AC 32 ms
52,608 KB
testcase_06 AC 34 ms
52,932 KB
testcase_07 AC 34 ms
52,968 KB
testcase_08 AC 33 ms
53,004 KB
testcase_09 AC 36 ms
52,660 KB
testcase_10 AC 35 ms
54,404 KB
testcase_11 AC 34 ms
52,676 KB
testcase_12 AC 33 ms
52,528 KB
testcase_13 AC 32 ms
52,232 KB
testcase_14 AC 33 ms
52,608 KB
testcase_15 AC 34 ms
52,868 KB
testcase_16 AC 33 ms
52,364 KB
testcase_17 AC 32 ms
53,196 KB
testcase_18 AC 33 ms
52,772 KB
testcase_19 AC 31 ms
53,072 KB
testcase_20 AC 34 ms
52,732 KB
testcase_21 AC 33 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
L=[0]*11
for _ in range(n):
	a,b,c=map(int,input().split())
	L[a]+=1
	L[b]+=1
	L[c]+=1
ans=0
for i in range(11):
	ans+=L[i]//2
	L[i]=L[i]%2
ans+=sum(L)//4
print(ans)
0