結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー tatt61880tatt61880
提出日時 2020-04-18 10:45:47
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 165 ms / 1,000 ms
コード長 689 bytes
コンパイル時間 2,806 ms
コンパイル使用メモリ 147,912 KB
実行使用メモリ 19,092 KB
最終ジャッジ日時 2024-09-16 10:36:03
合計ジャッジ時間 11,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 150 ms
18,812 KB
testcase_04 AC 159 ms
19,032 KB
testcase_05 AC 156 ms
19,044 KB
testcase_06 AC 159 ms
18,872 KB
testcase_07 AC 156 ms
19,092 KB
testcase_08 AC 159 ms
18,988 KB
testcase_09 AC 159 ms
19,092 KB
testcase_10 AC 165 ms
19,028 KB
testcase_11 AC 160 ms
18,864 KB
testcase_12 AC 153 ms
18,844 KB
testcase_13 AC 156 ms
18,812 KB
testcase_14 AC 155 ms
18,684 KB
testcase_15 AC 154 ms
18,940 KB
testcase_16 AC 160 ms
18,816 KB
testcase_17 AC 156 ms
18,796 KB
testcase_18 AC 149 ms
14,640 KB
testcase_19 AC 155 ms
14,464 KB
testcase_20 AC 146 ms
14,556 KB
testcase_21 AC 150 ms
14,548 KB
testcase_22 AC 146 ms
14,404 KB
testcase_23 AC 149 ms
14,512 KB
testcase_24 AC 147 ms
14,364 KB
testcase_25 AC 144 ms
14,456 KB
testcase_26 AC 141 ms
14,412 KB
testcase_27 AC 142 ms
14,240 KB
testcase_28 AC 142 ms
14,352 KB
testcase_29 AC 143 ms
14,312 KB
testcase_30 AC 141 ms
14,324 KB
testcase_31 AC 143 ms
14,312 KB
testcase_32 AC 143 ms
14,156 KB
testcase_33 AC 138 ms
14,248 KB
testcase_34 AC 138 ms
14,076 KB
testcase_35 AC 139 ms
14,168 KB
testcase_36 AC 138 ms
14,156 KB
testcase_37 AC 137 ms
14,024 KB
testcase_38 AC 136 ms
14,136 KB
testcase_39 AC 138 ms
14,128 KB
testcase_40 AC 135 ms
14,104 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 1 ms
6,940 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 12 ms
6,940 KB
testcase_45 AC 11 ms
6,944 KB
testcase_46 AC 12 ms
6,944 KB
testcase_47 AC 128 ms
14,664 KB
testcase_48 AC 129 ms
12,292 KB
testcase_49 AC 124 ms
11,524 KB
testcase_50 AC 120 ms
14,760 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, &)}" ~ (i = m - 1 ?("\n", " ")))
	end for
end func
0