結果

問題 No.1390 Get together
ユーザー nobu
提出日時 2021-03-27 00:15:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 229 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,424 KB
最終ジャッジ日時 2024-11-29 02:55:15
合計ジャッジ時間 14,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 3 WA * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,M=map(int,input().split())
b=[ list(map(int,input().split())) for i in range(N) ]
c=[]
count=0
for i in b:
    c.append(i[1])

w=collections.Counter(c)

for i in w.values():
    count += i//2

print(count)


0