結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー harapecoharapeco
提出日時 2022-03-15 14:05:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 101,272 KB
最終ジャッジ日時 2023-10-22 04:34:59
合計ジャッジ時間 13,778 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,324 KB
testcase_01 AC 34 ms
53,324 KB
testcase_02 AC 34 ms
53,324 KB
testcase_03 AC 35 ms
53,324 KB
testcase_04 AC 80 ms
76,616 KB
testcase_05 AC 85 ms
76,632 KB
testcase_06 AC 81 ms
76,652 KB
testcase_07 AC 79 ms
76,676 KB
testcase_08 AC 81 ms
76,692 KB
testcase_09 AC 83 ms
76,720 KB
testcase_10 AC 82 ms
76,676 KB
testcase_11 AC 80 ms
76,692 KB
testcase_12 AC 35 ms
53,328 KB
testcase_13 AC 38 ms
53,328 KB
testcase_14 AC 36 ms
53,328 KB
testcase_15 AC 34 ms
53,328 KB
testcase_16 AC 36 ms
53,328 KB
testcase_17 AC 36 ms
53,328 KB
testcase_18 AC 37 ms
53,328 KB
testcase_19 AC 37 ms
53,328 KB
testcase_20 AC 40 ms
53,328 KB
testcase_21 AC 38 ms
53,328 KB
testcase_22 AC 39 ms
53,328 KB
testcase_23 AC 36 ms
53,328 KB
testcase_24 AC 37 ms
53,328 KB
testcase_25 AC 37 ms
53,328 KB
testcase_26 AC 37 ms
53,328 KB
testcase_27 AC 38 ms
53,328 KB
testcase_28 AC 37 ms
53,328 KB
testcase_29 AC 37 ms
53,328 KB
testcase_30 AC 36 ms
53,328 KB
testcase_31 AC 37 ms
53,328 KB
testcase_32 AC 187 ms
86,504 KB
testcase_33 AC 168 ms
85,608 KB
testcase_34 AC 269 ms
90,216 KB
testcase_35 AC 240 ms
89,708 KB
testcase_36 AC 259 ms
90,568 KB
testcase_37 AC 174 ms
86,404 KB
testcase_38 AC 169 ms
87,192 KB
testcase_39 AC 269 ms
92,656 KB
testcase_40 AC 203 ms
87,132 KB
testcase_41 AC 258 ms
91,648 KB
testcase_42 AC 184 ms
87,132 KB
testcase_43 AC 198 ms
88,720 KB
testcase_44 AC 251 ms
90,700 KB
testcase_45 AC 186 ms
86,080 KB
testcase_46 AC 289 ms
93,560 KB
testcase_47 AC 126 ms
81,120 KB
testcase_48 AC 182 ms
87,928 KB
testcase_49 AC 297 ms
94,000 KB
testcase_50 AC 172 ms
84,760 KB
testcase_51 AC 165 ms
85,084 KB
testcase_52 AC 318 ms
95,556 KB
testcase_53 AC 321 ms
97,028 KB
testcase_54 AC 386 ms
101,232 KB
testcase_55 AC 392 ms
101,252 KB
testcase_56 AC 385 ms
101,240 KB
testcase_57 AC 391 ms
101,272 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