結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー kept1994kept1994
提出日時 2022-04-28 13:20:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 99,508 KB
最終ジャッジ日時 2024-06-28 07:55:22
合計ジャッジ時間 13,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,224 KB
testcase_01 AC 46 ms
55,256 KB
testcase_02 AC 46 ms
53,712 KB
testcase_03 AC 44 ms
54,528 KB
testcase_04 AC 105 ms
76,996 KB
testcase_05 AC 105 ms
77,068 KB
testcase_06 AC 98 ms
76,876 KB
testcase_07 AC 98 ms
77,344 KB
testcase_08 AC 96 ms
77,312 KB
testcase_09 AC 95 ms
77,044 KB
testcase_10 AC 100 ms
77,136 KB
testcase_11 AC 94 ms
77,088 KB
testcase_12 AC 43 ms
54,016 KB
testcase_13 AC 44 ms
54,528 KB
testcase_14 AC 44 ms
53,632 KB
testcase_15 AC 42 ms
54,016 KB
testcase_16 AC 44 ms
54,528 KB
testcase_17 AC 43 ms
54,784 KB
testcase_18 AC 45 ms
54,400 KB
testcase_19 AC 44 ms
53,888 KB
testcase_20 AC 47 ms
54,528 KB
testcase_21 AC 45 ms
54,144 KB
testcase_22 AC 45 ms
54,400 KB
testcase_23 AC 43 ms
54,656 KB
testcase_24 AC 44 ms
54,340 KB
testcase_25 AC 45 ms
54,272 KB
testcase_26 AC 44 ms
54,656 KB
testcase_27 AC 45 ms
54,272 KB
testcase_28 AC 44 ms
54,528 KB
testcase_29 AC 43 ms
54,144 KB
testcase_30 AC 43 ms
53,888 KB
testcase_31 AC 44 ms
54,144 KB
testcase_32 AC 224 ms
87,124 KB
testcase_33 AC 187 ms
84,568 KB
testcase_34 AC 282 ms
88,604 KB
testcase_35 AC 252 ms
86,300 KB
testcase_36 AC 281 ms
88,028 KB
testcase_37 AC 197 ms
84,428 KB
testcase_38 AC 197 ms
84,044 KB
testcase_39 AC 304 ms
89,380 KB
testcase_40 AC 239 ms
86,184 KB
testcase_41 AC 291 ms
89,732 KB
testcase_42 AC 220 ms
85,376 KB
testcase_43 AC 226 ms
87,552 KB
testcase_44 AC 264 ms
87,496 KB
testcase_45 AC 214 ms
85,308 KB
testcase_46 AC 323 ms
90,796 KB
testcase_47 AC 163 ms
81,536 KB
testcase_48 AC 221 ms
86,096 KB
testcase_49 AC 322 ms
89,864 KB
testcase_50 AC 205 ms
83,800 KB
testcase_51 AC 194 ms
83,732 KB
testcase_52 AC 350 ms
93,832 KB
testcase_53 AC 348 ms
93,704 KB
testcase_54 AC 437 ms
99,364 KB
testcase_55 AC 421 ms
99,508 KB
testcase_56 AC 450 ms
99,504 KB
testcase_57 AC 426 ms
99,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from collections import defaultdict
import sys

def main():
    N, M = map(int, input().split())
    d = defaultdict(int)
    for _ in range(N):
        S, A = input().split()
        A = int(A)
        d[S] = A
    for _ in range(M):
        T, B = input().split()
        B = int(B)
        d[T] = B
    l = sorted(d.items(), key=lambda x:x[0])
    for k, v in l:
        print(k, v)
    return

if __name__ == '__main__':
    main()



# 301, 1

# 300 4 * 300 = 1200
0