結果

問題 No.92 逃走経路
ユーザー horiesinitihoriesiniti
提出日時 2018-03-17 09:27:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 355 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-06-06 03:59:12
合計ジャッジ時間 4,409 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
14,080 KB
testcase_01 AC 75 ms
12,032 KB
testcase_02 AC 73 ms
12,288 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 AC 74 ms
12,160 KB
testcase_05 AC 318 ms
12,288 KB
testcase_06 AC 210 ms
12,416 KB
testcase_07 AC 209 ms
12,288 KB
testcase_08 AC 77 ms
12,288 KB
testcase_09 AC 108 ms
16,512 KB
testcase_10 AC 355 ms
14,208 KB
testcase_11 AC 330 ms
14,208 KB
testcase_12 AC 352 ms
16,512 KB
testcase_13 AC 91 ms
14,208 KB
testcase_14 AC 102 ms
13,568 KB
testcase_15 AC 126 ms
14,848 KB
testcase_16 AC 122 ms
13,696 KB
testcase_17 AC 153 ms
14,208 KB
testcase_18 AC 167 ms
12,928 KB
testcase_19 AC 161 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - k
Syntax OK

ソースコード

diff #

n,m,k=gets.split.map{|e| e.to_i}
g=n.times.map{[]}
m.times{
	a,b,c=gets.split.map{|e| e.to_i}
	a-=1
	b-=1
	g[a]<<[b,c]
	g[b]<<[a,c]
}
cs=gets.split.map{|e| e.to_i}
ans=n.times.map{|e| e.to_i}
hs={}
ans.each{|e|
	hs[e]=0	
}

cs.each{|e|
	hs2={}
	hs.keys.each{|e2|
		g[e2].each{|e3|
			if e3[1]==e
				hs2[e3[0]]=0
			end
		}
	}
	hs=hs2
}
puts hs.size
puts hs.keys.sort.map{|e| e+1}*" "
0