結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー ああいいああいい
提出日時 2022-03-12 00:40:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 1,645 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 97,208 KB
最終ジャッジ日時 2024-09-16 04:54:48
合計ジャッジ時間 13,816 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,248 KB
testcase_01 AC 44 ms
52,736 KB
testcase_02 AC 45 ms
53,248 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 AC 105 ms
77,056 KB
testcase_05 AC 105 ms
77,312 KB
testcase_06 AC 106 ms
77,312 KB
testcase_07 AC 105 ms
77,184 KB
testcase_08 AC 106 ms
77,184 KB
testcase_09 AC 106 ms
76,800 KB
testcase_10 AC 105 ms
76,928 KB
testcase_11 AC 104 ms
76,928 KB
testcase_12 AC 47 ms
53,632 KB
testcase_13 AC 48 ms
54,016 KB
testcase_14 AC 47 ms
53,632 KB
testcase_15 AC 46 ms
53,248 KB
testcase_16 AC 48 ms
53,760 KB
testcase_17 AC 47 ms
53,248 KB
testcase_18 AC 48 ms
53,760 KB
testcase_19 AC 48 ms
53,888 KB
testcase_20 AC 49 ms
54,016 KB
testcase_21 AC 48 ms
53,888 KB
testcase_22 AC 48 ms
54,016 KB
testcase_23 AC 47 ms
53,888 KB
testcase_24 AC 48 ms
53,760 KB
testcase_25 AC 49 ms
54,016 KB
testcase_26 AC 47 ms
53,888 KB
testcase_27 AC 49 ms
53,888 KB
testcase_28 AC 46 ms
53,504 KB
testcase_29 AC 48 ms
54,016 KB
testcase_30 AC 48 ms
53,248 KB
testcase_31 AC 47 ms
53,760 KB
testcase_32 AC 256 ms
85,184 KB
testcase_33 AC 213 ms
84,736 KB
testcase_34 AC 330 ms
87,204 KB
testcase_35 AC 300 ms
85,936 KB
testcase_36 AC 337 ms
87,536 KB
testcase_37 AC 223 ms
84,736 KB
testcase_38 AC 230 ms
86,528 KB
testcase_39 AC 370 ms
89,080 KB
testcase_40 AC 266 ms
86,016 KB
testcase_41 AC 341 ms
88,488 KB
testcase_42 AC 250 ms
84,992 KB
testcase_43 AC 264 ms
86,144 KB
testcase_44 AC 316 ms
88,928 KB
testcase_45 AC 249 ms
84,992 KB
testcase_46 AC 361 ms
90,116 KB
testcase_47 AC 160 ms
81,092 KB
testcase_48 AC 247 ms
85,504 KB
testcase_49 AC 378 ms
90,012 KB
testcase_50 AC 231 ms
83,840 KB
testcase_51 AC 218 ms
84,224 KB
testcase_52 AC 415 ms
93,248 KB
testcase_53 AC 416 ms
92,988 KB
testcase_54 AC 537 ms
97,080 KB
testcase_55 AC 526 ms
97,076 KB
testcase_56 AC 529 ms
97,200 KB
testcase_57 AC 525 ms
97,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
from collections import defaultdict
d = defaultdict(int)
for _ in range(N+M):
    S,t = input().split()
    d[S] = int(t)
l = list(d.items())
#print(l)
l.sort()
for S,i in l:
    print(S,i)
0