結果
| 問題 | No.1795 AtCoder Heuristic Rating coloring |
| コンテスト | |
| ユーザー |
harurun
|
| 提出日時 | 2021-11-15 00:09:43 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 444 ms / 2,000 ms |
| コード長 | 321 bytes |
| 記録 | |
| コンパイル時間 | 336 ms |
| コンパイル使用メモリ | 84,968 KB |
| 実行使用メモリ | 105,472 KB |
| 最終ジャッジ日時 | 2026-04-08 15:21:51 |
| 合計ジャッジ時間 | 14,064 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 54 |
ソースコード
from collections import Counter
def main():
N,M=map(int,input().split())
d=Counter()
for i in range(N):
S,A=input().split()
d[S]=int(A)
for i in range(M):
T,B=input().split()
d[T]=int(B)
ans=sorted(list(d.items()),key=lambda x:x[0])
for user,rate in ans:
print(user,rate)
return
main()
harurun