結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー MasKoaTSMasKoaTS
提出日時 2021-12-24 21:04:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 946 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 116,956 KB
最終ジャッジ日時 2024-09-20 03:26:04
合計ジャッジ時間 13,702 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
86,672 KB
testcase_01 AC 115 ms
87,040 KB
testcase_02 AC 115 ms
86,736 KB
testcase_03 AC 113 ms
86,780 KB
testcase_04 AC 144 ms
89,600 KB
testcase_05 AC 145 ms
89,400 KB
testcase_06 AC 142 ms
89,496 KB
testcase_07 AC 143 ms
89,344 KB
testcase_08 AC 150 ms
89,536 KB
testcase_09 AC 143 ms
89,600 KB
testcase_10 AC 145 ms
89,468 KB
testcase_11 AC 143 ms
89,400 KB
testcase_12 AC 117 ms
86,784 KB
testcase_13 AC 118 ms
86,400 KB
testcase_14 AC 120 ms
86,528 KB
testcase_15 AC 117 ms
86,400 KB
testcase_16 AC 119 ms
86,468 KB
testcase_17 AC 116 ms
86,656 KB
testcase_18 AC 119 ms
86,912 KB
testcase_19 AC 117 ms
86,400 KB
testcase_20 AC 117 ms
86,764 KB
testcase_21 AC 118 ms
86,772 KB
testcase_22 AC 119 ms
86,784 KB
testcase_23 AC 116 ms
86,624 KB
testcase_24 AC 119 ms
86,640 KB
testcase_25 AC 119 ms
86,600 KB
testcase_26 AC 115 ms
86,728 KB
testcase_27 AC 117 ms
86,528 KB
testcase_28 AC 117 ms
86,740 KB
testcase_29 AC 116 ms
86,784 KB
testcase_30 AC 117 ms
86,676 KB
testcase_31 AC 116 ms
87,040 KB
testcase_32 AC 213 ms
99,292 KB
testcase_33 AC 193 ms
98,432 KB
testcase_34 AC 242 ms
101,864 KB
testcase_35 AC 239 ms
101,316 KB
testcase_36 AC 249 ms
103,936 KB
testcase_37 AC 194 ms
98,816 KB
testcase_38 AC 191 ms
98,532 KB
testcase_39 AC 252 ms
103,692 KB
testcase_40 AC 219 ms
102,376 KB
testcase_41 AC 242 ms
102,656 KB
testcase_42 AC 199 ms
100,224 KB
testcase_43 AC 207 ms
101,772 KB
testcase_44 AC 234 ms
103,808 KB
testcase_45 AC 209 ms
100,488 KB
testcase_46 AC 268 ms
104,444 KB
testcase_47 AC 174 ms
94,592 KB
testcase_48 AC 202 ms
97,348 KB
testcase_49 AC 342 ms
104,772 KB
testcase_50 AC 204 ms
97,536 KB
testcase_51 AC 199 ms
98,304 KB
testcase_52 AC 278 ms
108,808 KB
testcase_53 AC 285 ms
108,800 KB
testcase_54 AC 322 ms
116,948 KB
testcase_55 AC 318 ms
116,824 KB
testcase_56 AC 325 ms
116,956 KB
testcase_57 AC 321 ms
116,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from copy import deepcopy as dcopy
import math
import sys
sys.setrecursionlimit(10**6)
def input():
    return sys.stdin.readline().rstrip()
def getN():
	return int(sys.stdin.readline())
def getNs():
	return map(int,sys.stdin.readline().split())
def getList():
	return list(map(int,sys.stdin.readline().split()))
def strinps(n):
	return [sys.stdin.readline().rstrip() for _ in range(n)]
pi = 3.141592653589793
mod = 10**9+7
MOD = 998244353
INF = math.inf
dx = [1,0,-1,0];	dy = [0,1,0,-1]


"""
Main Code
"""

n,m = getNs()
name = set([])
rate = coll.defaultdict(int)
for _ in [0]*n:
	s,t = map(str,sys.stdin.readline().split())
	a = int(t)
	name.add(s)
	rate[s] = a
for _ in [0]*m:
	s,t = map(str,sys.stdin.readline().split())
	a = int(t)
	name.add(s)
	rate[s] = a
for s in sorted(name):
	print(s + " " + str(rate[s]))
0