結果
| 問題 |
No.1795 AtCoder Heuristic Rating coloring
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-05 16:33:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 640 ms / 2,000 ms |
| コード長 | 312 bytes |
| コンパイル時間 | 175 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 34,464 KB |
| 最終ジャッジ日時 | 2024-06-11 13:35:40 |
| 合計ジャッジ時間 | 14,312 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 54 |
ソースコード
from collections import defaultdict
d=defaultdict(str)
n,m=map(int,input().split())
for _ in range(n):
s,t=map(str,input().split())
d[s]=t
for _ in range(m):
s,t=map(str,input().split())
d[s]=t
ans=[]
for key,val in d.items():
ans.append([key,val])
ans.sort()
for a,b in ans:
print(a,b)