結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー Meso MesoMeso Meso
提出日時 2024-07-11 20:35:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,960 KB
最終ジャッジ日時 2024-07-11 20:35:16
合計ジャッジ時間 15,849 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 42 ms
11,008 KB
testcase_05 AC 40 ms
11,008 KB
testcase_06 AC 41 ms
11,008 KB
testcase_07 AC 41 ms
10,880 KB
testcase_08 AC 42 ms
10,880 KB
testcase_09 AC 44 ms
11,264 KB
testcase_10 AC 45 ms
11,008 KB
testcase_11 AC 41 ms
11,008 KB
testcase_12 AC 31 ms
10,496 KB
testcase_13 AC 31 ms
10,368 KB
testcase_14 AC 31 ms
10,496 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 31 ms
10,368 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 30 ms
10,496 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 32 ms
10,496 KB
testcase_23 AC 30 ms
10,368 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 33 ms
10,496 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 32 ms
10,624 KB
testcase_30 AC 32 ms
10,496 KB
testcase_31 AC 31 ms
10,496 KB
testcase_32 AC 258 ms
18,316 KB
testcase_33 AC 185 ms
17,032 KB
testcase_34 AC 373 ms
21,984 KB
testcase_35 AC 361 ms
20,880 KB
testcase_36 AC 363 ms
22,552 KB
testcase_37 AC 212 ms
17,416 KB
testcase_38 AC 199 ms
17,936 KB
testcase_39 AC 434 ms
22,672 KB
testcase_40 AC 277 ms
19,204 KB
testcase_41 AC 381 ms
22,164 KB
testcase_42 AC 263 ms
18,448 KB
testcase_43 AC 253 ms
19,464 KB
testcase_44 AC 321 ms
22,108 KB
testcase_45 AC 252 ms
18,444 KB
testcase_46 AC 453 ms
23,436 KB
testcase_47 AC 126 ms
14,336 KB
testcase_48 AC 241 ms
19,080 KB
testcase_49 AC 439 ms
23,564 KB
testcase_50 AC 240 ms
17,676 KB
testcase_51 AC 214 ms
17,036 KB
testcase_52 AC 471 ms
25,112 KB
testcase_53 AC 473 ms
24,864 KB
testcase_54 AC 582 ms
33,832 KB
testcase_55 AC 552 ms
33,800 KB
testcase_56 AC 536 ms
33,956 KB
testcase_57 AC 538 ms
33,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
dic = {}

for i in range(n):
    name, score = input().split()
    dic[name] = score

for i in range(m):
    name, score = input().split()
    if name in dic:
        dic[name] = score
    else:
        dic[name] = score

for k, v in sorted(dic.items(), key=lambda x:x[0]):
    print(k, v)
0