結果
問題 | No.2563 色ごとのグループ |
ユーザー | YuuuT |
提出日時 | 2023-12-02 15:00:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 782 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 114,984 KB |
最終ジャッジ日時 | 2024-09-26 17:52:55 |
合計ジャッジ時間 | 6,514 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
54,272 KB |
testcase_01 | AC | 49 ms
54,400 KB |
testcase_02 | AC | 49 ms
54,144 KB |
testcase_03 | AC | 53 ms
54,400 KB |
testcase_04 | AC | 54 ms
54,400 KB |
testcase_05 | AC | 53 ms
54,144 KB |
testcase_06 | AC | 53 ms
54,272 KB |
testcase_07 | AC | 54 ms
54,272 KB |
testcase_08 | AC | 55 ms
54,144 KB |
testcase_09 | AC | 57 ms
55,168 KB |
testcase_10 | AC | 56 ms
54,656 KB |
testcase_11 | AC | 56 ms
54,912 KB |
testcase_12 | AC | 55 ms
54,656 KB |
testcase_13 | AC | 55 ms
54,400 KB |
testcase_14 | AC | 74 ms
66,688 KB |
testcase_15 | AC | 74 ms
66,560 KB |
testcase_16 | AC | 71 ms
66,304 KB |
testcase_17 | AC | 68 ms
66,048 KB |
testcase_18 | AC | 68 ms
64,256 KB |
testcase_19 | AC | 72 ms
69,504 KB |
testcase_20 | AC | 88 ms
78,720 KB |
testcase_21 | AC | 78 ms
74,112 KB |
testcase_22 | AC | 77 ms
72,576 KB |
testcase_23 | AC | 88 ms
77,312 KB |
testcase_24 | AC | 158 ms
98,432 KB |
testcase_25 | AC | 156 ms
100,224 KB |
testcase_26 | AC | 198 ms
102,788 KB |
testcase_27 | AC | 209 ms
113,832 KB |
testcase_28 | AC | 213 ms
105,532 KB |
testcase_29 | AC | 263 ms
114,696 KB |
testcase_30 | AC | 289 ms
114,640 KB |
testcase_31 | AC | 289 ms
114,780 KB |
testcase_32 | AC | 298 ms
114,984 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
import sys,math #if len(sys.argv)==2:sys.stdin=open(sys.argv[1]) from collections import defaultdict,deque from itertools import combinations,permutations,accumulate,product from bisect import bisect,bisect_left,bisect_right from heapq import heappop,heappush,heapify #from sortedcontainers import SortedList,SortedSet def input(): return sys.stdin.readline().rstrip() def ii(): return int(input()) def ms(): return map(int, input().split()) def li(): return list(map(int,input().split())) #//////////////////////////////////// N,M = ms() C = li() ans = 0 gro = defaultdict(list) for i in range(N): gro[C[i]].append(i+1) cnt = defaultdict(int) for _ in range(M): u,v = ms() if C[u-1]==C[v-1]: cnt[C[u-1]] += 1 for c in gro.keys(): ans += len(gro[c])-cnt[c]-1 print(ans)