結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 265 ms
34,068 KB
testcase_04 AC 281 ms
35,256 KB
testcase_05 AC 287 ms
34,528 KB
testcase_06 AC 283 ms
34,360 KB
testcase_07 AC 281 ms
34,356 KB
testcase_08 AC 282 ms
34,240 KB
testcase_09 AC 284 ms
34,232 KB
testcase_10 AC 285 ms
34,236 KB
testcase_11 AC 285 ms
34,236 KB
testcase_12 AC 285 ms
34,112 KB
testcase_13 AC 284 ms
34,108 KB
testcase_14 AC 285 ms
33,984 KB
testcase_15 AC 283 ms
33,980 KB
testcase_16 AC 284 ms
34,108 KB
testcase_17 AC 288 ms
34,004 KB
testcase_18 AC 284 ms
33,984 KB
testcase_19 AC 278 ms
33,984 KB
testcase_20 AC 274 ms
33,852 KB
testcase_21 AC 277 ms
33,852 KB
testcase_22 AC 281 ms
33,856 KB
testcase_23 AC 281 ms
33,852 KB
testcase_24 AC 273 ms
33,856 KB
testcase_25 AC 276 ms
33,856 KB
testcase_26 AC 274 ms
33,728 KB
testcase_27 AC 272 ms
33,724 KB
testcase_28 AC 269 ms
33,728 KB
testcase_29 AC 272 ms
33,852 KB
testcase_30 AC 270 ms
33,856 KB
testcase_31 AC 272 ms
33,856 KB
testcase_32 AC 269 ms
33,720 KB
testcase_33 AC 268 ms
33,588 KB
testcase_34 AC 267 ms
33,596 KB
testcase_35 AC 261 ms
33,444 KB
testcase_36 AC 262 ms
33,468 KB
testcase_37 AC 255 ms
33,472 KB
testcase_38 AC 259 ms
33,592 KB
testcase_39 AC 253 ms
33,472 KB
testcase_40 AC 256 ms
33,596 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 21 ms
6,272 KB
testcase_45 AC 20 ms
6,144 KB
testcase_46 AC 20 ms
6,016 KB
testcase_47 AC 236 ms
25,760 KB
testcase_48 AC 264 ms
27,348 KB
testcase_49 AC 259 ms
27,288 KB
testcase_50 AC 259 ms
33,240 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