結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー nohakai3nohakai3
提出日時 2022-06-26 17:35:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 36,076 KB
最終ジャッジ日時 2024-11-17 03:52:52
合計ジャッジ時間 78,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
15,872 KB
testcase_01 AC 27 ms
24,320 KB
testcase_02 AC 28 ms
15,744 KB
testcase_03 AC 29 ms
28,288 KB
testcase_04 AC 64 ms
16,256 KB
testcase_05 AC 62 ms
17,952 KB
testcase_06 AC 62 ms
16,256 KB
testcase_07 AC 50 ms
30,720 KB
testcase_08 AC 51 ms
16,256 KB
testcase_09 AC 50 ms
27,264 KB
testcase_10 AC 59 ms
16,256 KB
testcase_11 AC 48 ms
29,184 KB
testcase_12 AC 28 ms
15,872 KB
testcase_13 AC 27 ms
17,572 KB
testcase_14 AC 29 ms
15,744 KB
testcase_15 AC 27 ms
28,544 KB
testcase_16 AC 29 ms
15,744 KB
testcase_17 AC 28 ms
27,392 KB
testcase_18 AC 26 ms
17,700 KB
testcase_19 AC 28 ms
15,872 KB
testcase_20 AC 29 ms
15,872 KB
testcase_21 AC 28 ms
29,952 KB
testcase_22 AC 28 ms
15,744 KB
testcase_23 AC 27 ms
27,392 KB
testcase_24 AC 28 ms
15,872 KB
testcase_25 AC 29 ms
29,824 KB
testcase_26 AC 30 ms
15,744 KB
testcase_27 AC 30 ms
28,800 KB
testcase_28 AC 30 ms
15,744 KB
testcase_29 AC 28 ms
26,328 KB
testcase_30 AC 28 ms
15,744 KB
testcase_31 AC 28 ms
17,700 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 955 ms
21,888 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 1,731 ms
13,952 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
l=[]
l2=[]
for i in range(n):
    a,b=map(str,input().split())
    b=int(b)
    l2.append(a)
    l.append([a,b])

for j in range(m):
    a,b=map(str,input().split())
    b=int(b)
    if a in l2:
        x=l2.index(a)
        l[x][1]=b
    else:
        l.append([a,b])
    
l.sort()
for x in l:
    print(*x)
0