結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー harapecoharapeco
提出日時 2022-03-15 14:05:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 101,884 KB
最終ジャッジ日時 2024-09-22 05:54:18
合計ジャッジ時間 12,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,320 KB
testcase_01 AC 34 ms
52,832 KB
testcase_02 AC 35 ms
53,384 KB
testcase_03 AC 38 ms
53,080 KB
testcase_04 AC 85 ms
77,152 KB
testcase_05 AC 87 ms
77,308 KB
testcase_06 AC 86 ms
77,180 KB
testcase_07 AC 86 ms
76,928 KB
testcase_08 AC 86 ms
76,952 KB
testcase_09 AC 84 ms
77,184 KB
testcase_10 AC 87 ms
77,112 KB
testcase_11 AC 86 ms
77,268 KB
testcase_12 AC 37 ms
53,432 KB
testcase_13 AC 38 ms
53,536 KB
testcase_14 AC 38 ms
53,576 KB
testcase_15 AC 37 ms
54,040 KB
testcase_16 AC 39 ms
53,012 KB
testcase_17 AC 38 ms
54,684 KB
testcase_18 AC 39 ms
52,956 KB
testcase_19 AC 37 ms
53,424 KB
testcase_20 AC 39 ms
53,952 KB
testcase_21 AC 38 ms
53,492 KB
testcase_22 AC 37 ms
53,076 KB
testcase_23 AC 38 ms
53,364 KB
testcase_24 AC 38 ms
53,540 KB
testcase_25 AC 37 ms
52,924 KB
testcase_26 AC 37 ms
52,820 KB
testcase_27 AC 38 ms
53,220 KB
testcase_28 AC 37 ms
53,012 KB
testcase_29 AC 38 ms
53,940 KB
testcase_30 AC 38 ms
53,420 KB
testcase_31 AC 38 ms
52,944 KB
testcase_32 AC 202 ms
87,072 KB
testcase_33 AC 162 ms
86,104 KB
testcase_34 AC 255 ms
90,648 KB
testcase_35 AC 244 ms
90,124 KB
testcase_36 AC 266 ms
91,124 KB
testcase_37 AC 171 ms
87,004 KB
testcase_38 AC 171 ms
87,676 KB
testcase_39 AC 284 ms
92,988 KB
testcase_40 AC 211 ms
87,748 KB
testcase_41 AC 265 ms
92,052 KB
testcase_42 AC 190 ms
87,496 KB
testcase_43 AC 203 ms
89,236 KB
testcase_44 AC 246 ms
91,204 KB
testcase_45 AC 208 ms
86,420 KB
testcase_46 AC 296 ms
93,876 KB
testcase_47 AC 130 ms
82,172 KB
testcase_48 AC 195 ms
88,532 KB
testcase_49 AC 309 ms
94,592 KB
testcase_50 AC 182 ms
85,060 KB
testcase_51 AC 171 ms
85,988 KB
testcase_52 AC 323 ms
96,048 KB
testcase_53 AC 325 ms
97,440 KB
testcase_54 AC 401 ms
101,760 KB
testcase_55 AC 407 ms
101,884 KB
testcase_56 AC 403 ms
101,756 KB
testcase_57 AC 404 ms
101,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
member = {}
for i in range(N+M):
    k,v = map(str,input().split())
    member[k] = v
member = sorted(member.items(), key=lambda x:x[0])
for k,v in member:
    print(k,v)
0