結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー vwxyzvwxyz
提出日時 2022-09-06 16:03:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,692 KB
最終ジャッジ日時 2024-11-21 17:14:45
合計ジャッジ時間 10,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 35 ms
10,880 KB
testcase_05 AC 33 ms
11,008 KB
testcase_06 AC 35 ms
10,880 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 AC 36 ms
10,880 KB
testcase_09 AC 35 ms
11,136 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 35 ms
11,008 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 28 ms
10,624 KB
testcase_28 AC 29 ms
10,624 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 29 ms
10,624 KB
testcase_31 AC 29 ms
10,624 KB
testcase_32 AC 146 ms
15,516 KB
testcase_33 AC 116 ms
14,732 KB
testcase_34 AC 205 ms
17,844 KB
testcase_35 AC 180 ms
17,288 KB
testcase_36 AC 206 ms
18,336 KB
testcase_37 AC 126 ms
15,112 KB
testcase_38 AC 123 ms
15,264 KB
testcase_39 AC 223 ms
18,344 KB
testcase_40 AC 162 ms
15,948 KB
testcase_41 AC 207 ms
18,096 KB
testcase_42 AC 142 ms
15,496 KB
testcase_43 AC 153 ms
16,008 KB
testcase_44 AC 188 ms
17,944 KB
testcase_45 AC 149 ms
15,472 KB
testcase_46 AC 229 ms
18,712 KB
testcase_47 AC 81 ms
12,864 KB
testcase_48 AC 143 ms
15,772 KB
testcase_49 AC 248 ms
18,844 KB
testcase_50 AC 143 ms
14,988 KB
testcase_51 AC 124 ms
14,860 KB
testcase_52 AC 253 ms
19,868 KB
testcase_53 AC 258 ms
19,620 KB
testcase_54 AC 327 ms
25,568 KB
testcase_55 AC 335 ms
25,692 KB
testcase_56 AC 329 ms
25,564 KB
testcase_57 AC 327 ms
25,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
readline=sys.stdin.readline
write=sys.stdout.write
import itertools

N,M=map(int,readline().split())
rate={}
for n in range(N):
    S,A=readline().split()
    A=int(A)
    rate[S]=A
for m in range(M):
    T,B=readline().split()
    B=int(B)
    rate[T]=B
for S in sorted(list(rate.keys())):
    print(S,rate[S])
0