結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー laneguelanegue
提出日時 2021-12-24 10:05:29
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 3,269 ms
コンパイル使用メモリ 262,228 KB
実行使用メモリ 20,252 KB
最終ジャッジ日時 2024-06-22 13:52:44
合計ジャッジ時間 9,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 7 ms
6,944 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 117 ms
14,128 KB
testcase_33 AC 58 ms
12,388 KB
testcase_34 AC 126 ms
14,784 KB
testcase_35 AC 99 ms
14,700 KB
testcase_36 AC 109 ms
14,708 KB
testcase_37 AC 63 ms
13,776 KB
testcase_38 AC 61 ms
12,328 KB
testcase_39 AC 125 ms
14,932 KB
testcase_40 AC 81 ms
14,016 KB
testcase_41 AC 111 ms
14,872 KB
testcase_42 AC 73 ms
14,604 KB
testcase_43 AC 78 ms
13,940 KB
testcase_44 AC 104 ms
14,816 KB
testcase_45 AC 78 ms
14,032 KB
testcase_46 AC 124 ms
14,904 KB
testcase_47 AC 34 ms
9,664 KB
testcase_48 AC 70 ms
13,392 KB
testcase_49 AC 130 ms
14,956 KB
testcase_50 AC 71 ms
14,360 KB
testcase_51 AC 63 ms
12,788 KB
testcase_52 AC 138 ms
16,536 KB
testcase_53 AC 134 ms
16,500 KB
testcase_54 AC 175 ms
20,012 KB
testcase_55 AC 169 ms
20,116 KB
testcase_56 AC 167 ms
20,252 KB
testcase_57 AC 172 ms
19,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main(){
	auto input = readln.chomp.split(" ");
	auto N = input[0].to!int;
	auto M = input[1].to!int;
	int[string] r;
	for(auto n = 0; n < N+M; n++){
		input = readln.chomp.split(" ");
		auto s = input[0];
		auto a = input[1].to!int;
		r[s] = a;
	}
	foreach(k; r.keys.sort){
		writefln("%s %d", k, r[k]);
	}
}
0