結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー H20H20
提出日時 2021-12-24 00:05:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 110,768 KB
最終ジャッジ日時 2024-09-20 03:15:23
合計ジャッジ時間 11,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,384 KB
testcase_01 AC 40 ms
54,576 KB
testcase_02 AC 39 ms
53,968 KB
testcase_03 AC 40 ms
55,248 KB
testcase_04 AC 88 ms
77,356 KB
testcase_05 AC 89 ms
77,492 KB
testcase_06 AC 91 ms
77,248 KB
testcase_07 AC 92 ms
77,176 KB
testcase_08 AC 92 ms
77,508 KB
testcase_09 AC 92 ms
77,700 KB
testcase_10 AC 88 ms
77,480 KB
testcase_11 AC 87 ms
77,480 KB
testcase_12 AC 39 ms
54,988 KB
testcase_13 AC 40 ms
55,960 KB
testcase_14 AC 39 ms
55,456 KB
testcase_15 AC 38 ms
55,152 KB
testcase_16 AC 38 ms
54,624 KB
testcase_17 AC 39 ms
55,184 KB
testcase_18 AC 40 ms
54,784 KB
testcase_19 AC 38 ms
55,120 KB
testcase_20 AC 41 ms
55,980 KB
testcase_21 AC 38 ms
54,996 KB
testcase_22 AC 42 ms
54,588 KB
testcase_23 AC 40 ms
54,812 KB
testcase_24 AC 40 ms
54,804 KB
testcase_25 AC 40 ms
55,140 KB
testcase_26 AC 40 ms
54,924 KB
testcase_27 AC 41 ms
54,596 KB
testcase_28 AC 38 ms
54,304 KB
testcase_29 AC 41 ms
55,436 KB
testcase_30 AC 42 ms
55,824 KB
testcase_31 AC 43 ms
54,856 KB
testcase_32 AC 198 ms
89,920 KB
testcase_33 AC 170 ms
88,320 KB
testcase_34 AC 257 ms
93,356 KB
testcase_35 AC 224 ms
91,448 KB
testcase_36 AC 262 ms
94,560 KB
testcase_37 AC 188 ms
85,788 KB
testcase_38 AC 174 ms
86,732 KB
testcase_39 AC 275 ms
96,164 KB
testcase_40 AC 215 ms
89,516 KB
testcase_41 AC 269 ms
95,384 KB
testcase_42 AC 193 ms
88,124 KB
testcase_43 AC 216 ms
90,216 KB
testcase_44 AC 256 ms
93,412 KB
testcase_45 AC 200 ms
88,228 KB
testcase_46 AC 292 ms
97,440 KB
testcase_47 AC 135 ms
83,416 KB
testcase_48 AC 197 ms
88,456 KB
testcase_49 AC 300 ms
96,024 KB
testcase_50 AC 193 ms
86,924 KB
testcase_51 AC 175 ms
85,052 KB
testcase_52 AC 329 ms
101,920 KB
testcase_53 AC 327 ms
102,080 KB
testcase_54 AC 413 ms
110,624 KB
testcase_55 AC 417 ms
110,644 KB
testcase_56 AC 409 ms
110,768 KB
testcase_57 AC 407 ms
110,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
D = collections.defaultdict()
N,M = map(int, input().split())
for _ in range(N+M):
    s,a = input().split()
    D[s] = int(a)
L = []
for k,v in D.items():
    L.append([k,v])
L = sorted(L, key=lambda x: x[0])
for l in L:
    print(*l)
0