結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー simansiman
提出日時 2021-12-24 16:32:06
言語 Ruby
(3.4.1)
結果
AC  
実行時間 958 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 864 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 39,792 KB
最終ジャッジ日時 2024-12-27 13:54:11
合計ジャッジ時間 23,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
12,160 KB
testcase_01 AC 114 ms
12,032 KB
testcase_02 AC 122 ms
12,032 KB
testcase_03 AC 116 ms
11,904 KB
testcase_04 AC 132 ms
12,160 KB
testcase_05 AC 134 ms
12,160 KB
testcase_06 AC 128 ms
12,160 KB
testcase_07 AC 133 ms
12,544 KB
testcase_08 AC 129 ms
12,672 KB
testcase_09 AC 139 ms
12,672 KB
testcase_10 AC 141 ms
12,416 KB
testcase_11 AC 134 ms
12,160 KB
testcase_12 AC 119 ms
12,032 KB
testcase_13 AC 115 ms
12,032 KB
testcase_14 AC 118 ms
12,160 KB
testcase_15 AC 121 ms
12,160 KB
testcase_16 AC 119 ms
11,904 KB
testcase_17 AC 114 ms
12,032 KB
testcase_18 AC 112 ms
12,032 KB
testcase_19 AC 117 ms
11,904 KB
testcase_20 AC 116 ms
12,032 KB
testcase_21 AC 122 ms
12,032 KB
testcase_22 AC 116 ms
12,032 KB
testcase_23 AC 118 ms
12,160 KB
testcase_24 AC 120 ms
12,032 KB
testcase_25 AC 118 ms
12,160 KB
testcase_26 AC 110 ms
11,904 KB
testcase_27 AC 111 ms
12,032 KB
testcase_28 AC 112 ms
12,032 KB
testcase_29 AC 113 ms
12,160 KB
testcase_30 AC 116 ms
12,160 KB
testcase_31 AC 117 ms
11,904 KB
testcase_32 AC 397 ms
20,272 KB
testcase_33 AC 302 ms
18,204 KB
testcase_34 AC 498 ms
22,032 KB
testcase_35 AC 485 ms
21,808 KB
testcase_36 AC 520 ms
22,712 KB
testcase_37 AC 335 ms
19,088 KB
testcase_38 AC 337 ms
19,508 KB
testcase_39 AC 560 ms
22,808 KB
testcase_40 AC 398 ms
21,596 KB
testcase_41 AC 516 ms
22,196 KB
testcase_42 AC 376 ms
20,500 KB
testcase_43 AC 406 ms
21,012 KB
testcase_44 AC 453 ms
22,040 KB
testcase_45 AC 369 ms
20,372 KB
testcase_46 AC 552 ms
24,884 KB
testcase_47 AC 224 ms
15,756 KB
testcase_48 AC 360 ms
20,756 KB
testcase_49 AC 597 ms
24,860 KB
testcase_50 AC 358 ms
19,092 KB
testcase_51 AC 325 ms
18,592 KB
testcase_52 AC 724 ms
32,336 KB
testcase_53 AC 718 ms
32,216 KB
testcase_54 AC 958 ms
39,660 KB
testcase_55 AC 871 ms
39,660 KB
testcase_56 AC 915 ms
39,792 KB
testcase_57 AC 941 ms
39,508 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)

rating = Hash.new

N.times do
  s, a = gets.chomp.split
  rating[s] = a.to_i
end

M.times do
  t, b = gets.chomp.split
  rating[t] = b.to_i
end

rating.sort_by { |name, _| name }.each do |name, rate|
  puts [name, rate].join(' ')
end
0