結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 38 ms
51,456 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 46 ms
58,568 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 43 ms
58,624 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 44 ms
58,112 KB
testcase_11 AC 44 ms
58,496 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 43 ms
58,496 KB
testcase_14 AC 46 ms
58,368 KB
testcase_15 AC 45 ms
58,112 KB
testcase_16 AC 45 ms
58,240 KB
testcase_17 AC 44 ms
58,368 KB
testcase_18 AC 41 ms
52,352 KB
testcase_19 AC 62 ms
72,192 KB
testcase_20 AC 109 ms
103,096 KB
testcase_21 AC 55 ms
67,328 KB
testcase_22 AC 92 ms
100,596 KB
testcase_23 AC 51 ms
64,768 KB
testcase_24 AC 61 ms
73,976 KB
testcase_25 AC 51 ms
62,720 KB
testcase_26 AC 77 ms
87,296 KB
testcase_27 AC 106 ms
102,932 KB
testcase_28 AC 109 ms
110,412 KB
testcase_29 AC 86 ms
96,896 KB
testcase_30 AC 103 ms
108,880 KB
testcase_31 AC 75 ms
84,736 KB
testcase_32 AC 102 ms
104,064 KB
testcase_33 AC 54 ms
67,668 KB
testcase_34 AC 106 ms
102,764 KB
testcase_35 AC 77 ms
88,832 KB
testcase_36 AC 107 ms
104,444 KB
testcase_37 AC 102 ms
108,752 KB
testcase_38 AC 61 ms
72,064 KB
testcase_39 AC 109 ms
103,040 KB
testcase_40 AC 117 ms
103,364 KB
testcase_41 AC 115 ms
103,168 KB
testcase_42 AC 105 ms
103,040 KB
testcase_43 AC 107 ms
103,296 KB
testcase_44 AC 130 ms
109,004 KB
testcase_45 AC 146 ms
104,388 KB
testcase_46 AC 150 ms
104,652 KB
testcase_47 AC 110 ms
113,020 KB
testcase_48 AC 108 ms
108,672 KB
testcase_49 AC 112 ms
111,616 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