結果

問題 No.2563 色ごとのグループ
ユーザー ID 21712ID 21712
提出日時 2024-11-12 20:30:57
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 13,304 ms
コンパイル使用メモリ 226,212 KB
実行使用メモリ 20,288 KB
最終ジャッジ日時 2024-11-12 20:31:24
合計ジャッジ時間 19,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 7 ms
6,816 KB
testcase_20 AC 20 ms
6,820 KB
testcase_21 AC 12 ms
6,816 KB
testcase_22 AC 10 ms
6,820 KB
testcase_23 AC 17 ms
6,820 KB
testcase_24 AC 156 ms
7,060 KB
testcase_25 AC 129 ms
8,724 KB
testcase_26 AC 177 ms
10,136 KB
testcase_27 AC 154 ms
14,360 KB
testcase_28 AC 200 ms
12,208 KB
testcase_29 AC 287 ms
20,276 KB
testcase_30 AC 282 ms
20,284 KB
testcase_31 AC 277 ms
20,284 KB
testcase_32 AC 281 ms
20,288 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,m int
	Fscan(rd,&n,&m)
	cs:=make([]int,n)
	t:=make(map[int]int)
	for i:=range cs {
		Fscan(rd,&cs[i])
		t[cs[i]]++
	}
	for ;m>0;m-- {
		var u,v int
		Fscan(rd,&u,&v)
		u--
		v--
		if cs[u]==cs[v] {
			t[cs[u]]--
		}
	}
	var ans int
	for _,c:=range t {
		ans+=c-1
	}
	Println(ans)
}
0