結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 136 ms
20,372 KB
testcase_04 AC 141 ms
21,404 KB
testcase_05 AC 142 ms
21,220 KB
testcase_06 AC 142 ms
21,080 KB
testcase_07 AC 139 ms
20,940 KB
testcase_08 AC 139 ms
20,928 KB
testcase_09 AC 137 ms
21,032 KB
testcase_10 AC 139 ms
20,748 KB
testcase_11 AC 141 ms
20,708 KB
testcase_12 AC 140 ms
20,400 KB
testcase_13 AC 143 ms
20,252 KB
testcase_14 AC 142 ms
20,116 KB
testcase_15 AC 142 ms
20,224 KB
testcase_16 AC 139 ms
20,084 KB
testcase_17 AC 139 ms
20,180 KB
testcase_18 AC 138 ms
19,764 KB
testcase_19 AC 136 ms
19,456 KB
testcase_20 AC 135 ms
19,292 KB
testcase_21 AC 132 ms
19,280 KB
testcase_22 AC 135 ms
19,140 KB
testcase_23 AC 131 ms
19,040 KB
testcase_24 AC 131 ms
18,972 KB
testcase_25 AC 127 ms
18,688 KB
testcase_26 AC 126 ms
18,388 KB
testcase_27 AC 126 ms
18,204 KB
testcase_28 AC 123 ms
17,932 KB
testcase_29 AC 119 ms
18,184 KB
testcase_30 AC 124 ms
17,784 KB
testcase_31 AC 121 ms
17,892 KB
testcase_32 AC 121 ms
17,736 KB
testcase_33 AC 127 ms
17,452 KB
testcase_34 AC 120 ms
17,016 KB
testcase_35 AC 117 ms
16,856 KB
testcase_36 AC 117 ms
16,968 KB
testcase_37 AC 125 ms
16,836 KB
testcase_38 AC 120 ms
16,832 KB
testcase_39 AC 117 ms
16,812 KB
testcase_40 AC 125 ms
16,532 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 11 ms
5,376 KB
testcase_45 AC 10 ms
5,376 KB
testcase_46 AC 11 ms
5,376 KB
testcase_47 AC 113 ms
15,436 KB
testcase_48 AC 119 ms
17,524 KB
testcase_49 AC 117 ms
19,044 KB
testcase_50 AC 109 ms
22,780 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 :* 10
			do val :+ 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 :* 10
			do val :+ s[j] $ int - 48
			do j :+ 1
		end while
		do j :+ 1
		do cui@print("\{mp.get(val, &)} ")
	end for
end func
0