結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー ID 21712ID 21712
提出日時 2024-12-09 17:19:46
言語 Go
(1.22.1)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 13,406 ms
コンパイル使用メモリ 220,876 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-12-09 17:20:13
合計ジャッジ時間 22,786 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 8 ms
5,248 KB
testcase_05 AC 7 ms
5,248 KB
testcase_06 AC 10 ms
5,248 KB
testcase_07 AC 9 ms
5,248 KB
testcase_08 AC 9 ms
5,248 KB
testcase_09 AC 10 ms
5,248 KB
testcase_10 AC 10 ms
5,248 KB
testcase_11 AC 9 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 163 ms
9,600 KB
testcase_33 AC 112 ms
8,320 KB
testcase_34 AC 260 ms
11,264 KB
testcase_35 AC 205 ms
11,520 KB
testcase_36 AC 250 ms
13,824 KB
testcase_37 AC 130 ms
9,088 KB
testcase_38 AC 127 ms
8,704 KB
testcase_39 AC 287 ms
14,208 KB
testcase_40 AC 177 ms
9,600 KB
testcase_41 AC 233 ms
11,392 KB
testcase_42 AC 151 ms
9,344 KB
testcase_43 AC 158 ms
8,576 KB
testcase_44 AC 200 ms
11,264 KB
testcase_45 AC 166 ms
9,472 KB
testcase_46 AC 272 ms
14,208 KB
testcase_47 AC 69 ms
5,888 KB
testcase_48 AC 150 ms
9,704 KB
testcase_49 AC 293 ms
14,336 KB
testcase_50 AC 149 ms
9,472 KB
testcase_51 AC 131 ms
8,576 KB
testcase_52 AC 321 ms
15,980 KB
testcase_53 AC 314 ms
16,112 KB
testcase_54 AC 417 ms
17,456 KB
testcase_55 AC 386 ms
17,408 KB
testcase_56 AC 380 ms
17,536 KB
testcase_57 AC 408 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"
import . "sort"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,m int
	Fscan(rd,&n,&m)
	t:=map[string]int{}
	s:=[]string{}
	for i:=n+m;i>0;i--{
		var a string
		var b int
		Fscan(rd,&a,&b)
		t[a]=b
		s=append(s,a)
	}
	Strings(s)
	for _,a:= range s{
		if b,ok:=t[a];ok {
			Println(a,b)
			delete(t,a)
		}
	}
}
0