結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 141 ms
18,808 KB
testcase_04 AC 147 ms
19,084 KB
testcase_05 AC 148 ms
18,988 KB
testcase_06 AC 152 ms
18,932 KB
testcase_07 AC 149 ms
18,992 KB
testcase_08 AC 150 ms
19,016 KB
testcase_09 AC 147 ms
18,944 KB
testcase_10 AC 151 ms
18,844 KB
testcase_11 AC 152 ms
18,884 KB
testcase_12 AC 147 ms
18,860 KB
testcase_13 AC 145 ms
18,880 KB
testcase_14 AC 147 ms
18,808 KB
testcase_15 AC 143 ms
18,924 KB
testcase_16 AC 144 ms
18,768 KB
testcase_17 AC 146 ms
18,732 KB
testcase_18 AC 141 ms
14,640 KB
testcase_19 AC 150 ms
14,460 KB
testcase_20 AC 139 ms
14,424 KB
testcase_21 AC 141 ms
14,548 KB
testcase_22 AC 138 ms
14,368 KB
testcase_23 AC 140 ms
14,512 KB
testcase_24 AC 137 ms
14,484 KB
testcase_25 AC 135 ms
14,456 KB
testcase_26 AC 136 ms
14,284 KB
testcase_27 AC 132 ms
14,236 KB
testcase_28 AC 131 ms
14,352 KB
testcase_29 AC 130 ms
14,344 KB
testcase_30 AC 130 ms
14,328 KB
testcase_31 AC 129 ms
14,308 KB
testcase_32 AC 129 ms
14,284 KB
testcase_33 AC 128 ms
14,248 KB
testcase_34 AC 127 ms
14,204 KB
testcase_35 AC 128 ms
14,116 KB
testcase_36 AC 128 ms
14,032 KB
testcase_37 AC 127 ms
14,148 KB
testcase_38 AC 127 ms
14,132 KB
testcase_39 AC 126 ms
14,124 KB
testcase_40 AC 123 ms
14,104 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 2 ms
6,944 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 11 ms
6,944 KB
testcase_45 AC 11 ms
6,940 KB
testcase_46 AC 10 ms
6,944 KB
testcase_47 AC 119 ms
14,620 KB
testcase_48 AC 119 ms
12,400 KB
testcase_49 AC 118 ms
11,524 KB
testcase_50 AC 107 ms
14,824 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>
	
	var s: []char
	var j: int
	
	do s :: cui@input() ~ " "
	do j :: 0
	for i(0, n - 1)
		var val: int :: 0
		while(s[j] <> ' ')
			do val :* 10
			do val :+ s[j] $ int - '0' $ int
			do j :+ 1
		end while
		do j :+ 1
		do mp.add(val, mp.get(val, &) + 1)
	end for
	
	do s :: cui@input() ~ " "
	do j :: 0
	for i(0, m - 1)
		var val: int :: 0
		while(s[j] <> ' ')
			do val :* 10
			do val :+ s[j] $ int - '0' $ int
			do j :+ 1
		end while
		do j :+ 1
		do cui@print("\{mp.get(val, &)} ")
	end for
end func
0