結果

問題 No.1390 Get together
ユーザー nobunobu
提出日時 2021-03-27 00:31:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,308 KB
最終ジャッジ日時 2024-11-29 03:25:56
合計ジャッジ時間 16,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 WA * 24
権限があれば一括ダウンロードができます

ソースコード

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():
    if i >= 2:
        count += i//2 + i % 2

print(count)


0