結果

問題 No.610 区間賞(Section Award)
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-31 15:22:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 113,024 KB
最終ジャッジ日時 2024-10-08 12:53:20
合計ジャッジ時間 6,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 42 ms
51,328 KB
testcase_02 AC 37 ms
51,328 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 41 ms
58,368 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 42 ms
57,984 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 43 ms
57,984 KB
testcase_11 AC 41 ms
57,856 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 42 ms
58,496 KB
testcase_14 AC 41 ms
58,624 KB
testcase_15 AC 42 ms
58,496 KB
testcase_16 AC 41 ms
58,240 KB
testcase_17 AC 41 ms
58,240 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 53 ms
71,808 KB
testcase_20 AC 102 ms
102,784 KB
testcase_21 AC 50 ms
67,200 KB
testcase_22 AC 84 ms
100,736 KB
testcase_23 AC 48 ms
64,512 KB
testcase_24 AC 57 ms
73,600 KB
testcase_25 AC 46 ms
62,720 KB
testcase_26 AC 70 ms
86,912 KB
testcase_27 AC 101 ms
102,784 KB
testcase_28 AC 100 ms
110,428 KB
testcase_29 AC 81 ms
96,512 KB
testcase_30 AC 98 ms
108,928 KB
testcase_31 AC 67 ms
84,224 KB
testcase_32 AC 96 ms
103,936 KB
testcase_33 AC 50 ms
67,584 KB
testcase_34 AC 99 ms
103,012 KB
testcase_35 AC 71 ms
88,960 KB
testcase_36 AC 100 ms
104,496 KB
testcase_37 AC 97 ms
108,416 KB
testcase_38 AC 55 ms
72,192 KB
testcase_39 AC 101 ms
103,168 KB
testcase_40 AC 100 ms
102,784 KB
testcase_41 AC 101 ms
103,040 KB
testcase_42 AC 102 ms
103,424 KB
testcase_43 AC 99 ms
103,168 KB
testcase_44 AC 125 ms
108,544 KB
testcase_45 AC 142 ms
104,332 KB
testcase_46 AC 143 ms
104,408 KB
testcase_47 AC 103 ms
113,024 KB
testcase_48 AC 95 ms
108,632 KB
testcase_49 AC 100 ms
112,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

X = {}

for i, a in enumerate(A):
    X[a] = i

M = -1
ans = []
for i, b in enumerate(B):
    if M < X[b]:
        ans.append(b)
    M = max(M, X[b])
ans.sort()
print(*ans, sep='\n')
0