結果

問題 No.2563 色ごとのグループ
ユーザー Basin-BugBasin-Bug
提出日時 2023-12-02 15:45:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 113,696 KB
最終ジャッジ日時 2024-09-26 19:14:22
合計ジャッジ時間 7,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,732 KB
testcase_01 AC 46 ms
53,760 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 46 ms
53,504 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 47 ms
53,120 KB
testcase_06 AC 46 ms
53,376 KB
testcase_07 AC 46 ms
53,632 KB
testcase_08 AC 45 ms
53,504 KB
testcase_09 AC 49 ms
54,528 KB
testcase_10 AC 46 ms
53,504 KB
testcase_11 AC 48 ms
54,272 KB
testcase_12 AC 46 ms
54,016 KB
testcase_13 AC 46 ms
53,632 KB
testcase_14 AC 79 ms
71,296 KB
testcase_15 AC 81 ms
71,936 KB
testcase_16 AC 79 ms
71,552 KB
testcase_17 AC 79 ms
71,296 KB
testcase_18 AC 59 ms
63,732 KB
testcase_19 AC 89 ms
76,500 KB
testcase_20 AC 101 ms
78,592 KB
testcase_21 AC 92 ms
76,744 KB
testcase_22 AC 95 ms
76,856 KB
testcase_23 AC 100 ms
76,872 KB
testcase_24 AC 199 ms
94,132 KB
testcase_25 AC 185 ms
96,880 KB
testcase_26 AC 227 ms
110,552 KB
testcase_27 AC 218 ms
106,752 KB
testcase_28 AC 253 ms
113,696 KB
testcase_29 AC 294 ms
106,708 KB
testcase_30 AC 299 ms
106,652 KB
testcase_31 AC 304 ms
106,752 KB
testcase_32 AC 294 ms
106,692 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N, M = map(int, input().split())
C = list(map(int, input().split()))
colors = defaultdict(int)
edges = defaultdict(int)

for i in range(N):
  colors[C[i]] += 1

for i in range(M):
  u, v = map(int, input().split())
  if C[u - 1] == C[v - 1]:
    edges[C[u - 1]] += 1

ans = 0
for i, j in colors.items():
  if edges[i] < j - 1:
    ans += (j - 1) - edges[i]

print(ans)

  
0