結果
| 問題 |
No.1390 Get together
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-27 00:18:39 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 257 bytes |
| コンパイル時間 | 114 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 59,312 KB |
| 最終ジャッジ日時 | 2024-11-29 02:59:10 |
| 合計ジャッジ時間 | 16,019 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 WA * 24 |
ソースコード
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)