結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー harurunharurun
提出日時 2021-11-15 00:58:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,000 KB
最終ジャッジ日時 2024-09-20 03:07:52
合計ジャッジ時間 11,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 36 ms
11,008 KB
testcase_06 AC 37 ms
11,008 KB
testcase_07 AC 36 ms
11,136 KB
testcase_08 AC 38 ms
11,008 KB
testcase_09 AC 39 ms
11,136 KB
testcase_10 AC 40 ms
11,264 KB
testcase_11 AC 39 ms
11,136 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 27 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 28 ms
10,624 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 27 ms
10,624 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 26 ms
10,624 KB
testcase_30 AC 27 ms
10,624 KB
testcase_31 AC 27 ms
10,624 KB
testcase_32 AC 218 ms
18,212 KB
testcase_33 AC 158 ms
16,912 KB
testcase_34 AC 314 ms
21,684 KB
testcase_35 AC 273 ms
20,684 KB
testcase_36 AC 314 ms
22,436 KB
testcase_37 AC 181 ms
17,292 KB
testcase_38 AC 171 ms
17,696 KB
testcase_39 AC 337 ms
22,320 KB
testcase_40 AC 236 ms
18,828 KB
testcase_41 AC 317 ms
21,564 KB
testcase_42 AC 209 ms
18,320 KB
testcase_43 AC 209 ms
19,208 KB
testcase_44 AC 274 ms
21,920 KB
testcase_45 AC 223 ms
18,192 KB
testcase_46 AC 344 ms
22,936 KB
testcase_47 AC 112 ms
14,028 KB
testcase_48 AC 205 ms
18,724 KB
testcase_49 AC 367 ms
23,324 KB
testcase_50 AC 196 ms
17,296 KB
testcase_51 AC 174 ms
17,036 KB
testcase_52 AC 392 ms
24,748 KB
testcase_53 AC 396 ms
24,616 KB
testcase_54 AC 474 ms
33,000 KB
testcase_55 AC 493 ms
32,864 KB
testcase_56 AC 483 ms
32,996 KB
testcase_57 AC 488 ms
32,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  N,M=map(int,input().split())
  d={}
  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()

0