結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー tatt61880tatt61880
提出日時 2023-03-04 09:51:57
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 7,068 ms
コンパイル使用メモリ 147,200 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-09-18 00:58:10
合計ジャッジ時間 11,265 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 120 ms
9,216 KB
testcase_33 AC 81 ms
8,192 KB
testcase_34 AC 174 ms
11,264 KB
testcase_35 AC 149 ms
10,240 KB
testcase_36 AC 177 ms
11,904 KB
testcase_37 AC 92 ms
8,576 KB
testcase_38 AC 87 ms
8,832 KB
testcase_39 AC 210 ms
11,904 KB
testcase_40 AC 129 ms
9,856 KB
testcase_41 AC 193 ms
11,264 KB
testcase_42 AC 117 ms
9,344 KB
testcase_43 AC 129 ms
9,984 KB
testcase_44 AC 160 ms
11,264 KB
testcase_45 AC 116 ms
9,344 KB
testcase_46 AC 194 ms
12,288 KB
testcase_47 AC 48 ms
6,528 KB
testcase_48 AC 110 ms
9,600 KB
testcase_49 AC 219 ms
12,416 KB
testcase_50 AC 108 ms
8,704 KB
testcase_51 AC 95 ms
8,320 KB
testcase_52 AC 262 ms
14,208 KB
testcase_53 AC 246 ms
14,208 KB
testcase_54 AC 335 ms
19,712 KB
testcase_55 AC 342 ms
19,584 KB
testcase_56 AC 345 ms
19,712 KB
testcase_57 AC 355 ms
19,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var m: int :: cui@inputInt()
	
	var dic: dict<[]char, int> :: #dict<[]char, int>
	for(1, m + n)
		var s: []char :: cui@inputStr()
		var a: int :: cui@inputInt()
		do dic.add(s, a)
	end for
	
	do dic.forEach(f, null)
	
	func f(key: []char, val: int, _: kuin@Class): bool
		do cui@print("\{key} \{val}\n")
		ret true
	end func
end func
0