結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 141 ms
20,456 KB
testcase_04 AC 147 ms
21,456 KB
testcase_05 AC 145 ms
21,220 KB
testcase_06 AC 143 ms
21,252 KB
testcase_07 AC 145 ms
21,076 KB
testcase_08 AC 143 ms
21,056 KB
testcase_09 AC 145 ms
20,908 KB
testcase_10 AC 146 ms
20,844 KB
testcase_11 AC 144 ms
20,648 KB
testcase_12 AC 144 ms
20,588 KB
testcase_13 AC 145 ms
20,456 KB
testcase_14 AC 143 ms
20,416 KB
testcase_15 AC 143 ms
20,416 KB
testcase_16 AC 144 ms
20,216 KB
testcase_17 AC 140 ms
20,168 KB
testcase_18 AC 136 ms
19,992 KB
testcase_19 AC 140 ms
19,528 KB
testcase_20 AC 138 ms
19,536 KB
testcase_21 AC 137 ms
19,508 KB
testcase_22 AC 136 ms
19,204 KB
testcase_23 AC 137 ms
19,100 KB
testcase_24 AC 141 ms
19,092 KB
testcase_25 AC 132 ms
18,996 KB
testcase_26 AC 129 ms
18,592 KB
testcase_27 AC 132 ms
18,432 KB
testcase_28 AC 128 ms
18,160 KB
testcase_29 AC 126 ms
18,168 KB
testcase_30 AC 126 ms
18,076 KB
testcase_31 AC 127 ms
18,052 KB
testcase_32 AC 126 ms
17,792 KB
testcase_33 AC 123 ms
17,528 KB
testcase_34 AC 124 ms
17,436 KB
testcase_35 AC 122 ms
17,092 KB
testcase_36 AC 122 ms
17,052 KB
testcase_37 AC 123 ms
16,960 KB
testcase_38 AC 125 ms
16,900 KB
testcase_39 AC 123 ms
16,760 KB
testcase_40 AC 125 ms
16,720 KB
testcase_41 AC 1 ms
6,944 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 11 ms
6,940 KB
testcase_45 AC 10 ms
6,940 KB
testcase_46 AC 10 ms
6,940 KB
testcase_47 AC 109 ms
15,524 KB
testcase_48 AC 119 ms
17,524 KB
testcase_49 AC 115 ms
19,096 KB
testcase_50 AC 105 ms
22,816 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() ~ " " ~ cui@input() ~ " "
	do j :: 0
	for i(0, n - 1)
		var val: int :: 0
		while(s[j] <> ' ')
			do val :: val * 10 + s[j] $ int - 48
			do j :+ 1
		end while
		do j :+ 1
		do mp.add(val, mp.get(val, &) + 1)
	end for
	
	for i(0, m - 1)
		var val: int :: 0
		while(s[j] <> ' ')
			do val :: val * 10 + s[j] $ int - 48
			do j :+ 1
		end while
		do j :+ 1
		do cui@print("\{mp.get(val, &)} ")
	end for
end func
0