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