結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー tatt61880tatt61880
提出日時 2020-04-18 10:34:37
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 276 ms / 1,000 ms
コード長 432 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 147,436 KB
実行使用メモリ 34,956 KB
最終ジャッジ日時 2024-09-16 10:35:13
合計ジャッジ時間 16,149 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 264 ms
33,980 KB
testcase_04 AC 269 ms
34,956 KB
testcase_05 AC 267 ms
34,400 KB
testcase_06 AC 267 ms
34,236 KB
testcase_07 AC 270 ms
34,108 KB
testcase_08 AC 276 ms
34,232 KB
testcase_09 AC 272 ms
34,240 KB
testcase_10 AC 270 ms
34,236 KB
testcase_11 AC 268 ms
34,108 KB
testcase_12 AC 265 ms
34,112 KB
testcase_13 AC 271 ms
33,980 KB
testcase_14 AC 265 ms
34,112 KB
testcase_15 AC 261 ms
34,104 KB
testcase_16 AC 252 ms
34,108 KB
testcase_17 AC 268 ms
34,008 KB
testcase_18 AC 264 ms
33,984 KB
testcase_19 AC 258 ms
33,856 KB
testcase_20 AC 257 ms
33,728 KB
testcase_21 AC 260 ms
33,856 KB
testcase_22 AC 252 ms
33,724 KB
testcase_23 AC 252 ms
33,728 KB
testcase_24 AC 246 ms
33,852 KB
testcase_25 AC 248 ms
33,856 KB
testcase_26 AC 246 ms
33,724 KB
testcase_27 AC 250 ms
33,596 KB
testcase_28 AC 256 ms
33,720 KB
testcase_29 AC 258 ms
33,720 KB
testcase_30 AC 248 ms
33,596 KB
testcase_31 AC 253 ms
33,632 KB
testcase_32 AC 249 ms
33,592 KB
testcase_33 AC 240 ms
33,600 KB
testcase_34 AC 239 ms
33,592 KB
testcase_35 AC 242 ms
33,340 KB
testcase_36 AC 241 ms
33,336 KB
testcase_37 AC 239 ms
33,464 KB
testcase_38 AC 243 ms
33,340 KB
testcase_39 AC 243 ms
33,468 KB
testcase_40 AC 249 ms
33,336 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 20 ms
6,144 KB
testcase_45 AC 19 ms
6,016 KB
testcase_46 AC 19 ms
6,016 KB
testcase_47 AC 208 ms
25,760 KB
testcase_48 AC 218 ms
27,348 KB
testcase_49 AC 211 ms
27,156 KB
testcase_50 AC 229 ms
33,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var ss: [][]char :: cui@input().split(" ")
	var n: int :: ss[0].toInt(&)
	var m: int :: ss[1].toInt(&)
	var mp: dict<int, int> :: #dict<int, int>
	
	do ss :: cui@input().split(" ")
	for i(0, n - 1)
		var val: int :: ss[i].toInt(&)
		do mp.add(val, mp.get(val, &) + 1)
	end for
	do ss :: cui@input().split(" ")
	for i(0, m - 1)
		do cui@print("\{mp.get(ss[i].toInt(&), &)}" ~ (i = m - 1 ?("\n", " ")))
	end for
end func
0