結果

問題 No.610 区間賞(Section Award)
ユーザー H3PO4H3PO4
提出日時 2020-10-10 09:01:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,468 KB
最終ジャッジ日時 2024-07-20 15:40:00
合計ジャッジ時間 6,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 25 ms
10,880 KB
testcase_17 AC 26 ms
10,880 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 44 ms
14,716 KB
testcase_20 AC 122 ms
33,684 KB
testcase_21 AC 41 ms
13,696 KB
testcase_22 AC 84 ms
24,088 KB
testcase_23 AC 33 ms
12,544 KB
testcase_24 AC 47 ms
16,656 KB
testcase_25 AC 32 ms
12,160 KB
testcase_26 AC 69 ms
22,212 KB
testcase_27 AC 127 ms
33,900 KB
testcase_28 AC 108 ms
27,476 KB
testcase_29 AC 82 ms
23,676 KB
testcase_30 AC 109 ms
26,516 KB
testcase_31 AC 66 ms
19,088 KB
testcase_32 AC 119 ms
34,000 KB
testcase_33 AC 38 ms
13,568 KB
testcase_34 AC 125 ms
34,468 KB
testcase_35 AC 71 ms
21,900 KB
testcase_36 AC 125 ms
34,312 KB
testcase_37 AC 102 ms
26,644 KB
testcase_38 AC 47 ms
14,904 KB
testcase_39 AC 125 ms
34,460 KB
testcase_40 AC 131 ms
34,456 KB
testcase_41 AC 123 ms
34,332 KB
testcase_42 AC 125 ms
34,328 KB
testcase_43 AC 128 ms
34,332 KB
testcase_44 AC 195 ms
27,924 KB
testcase_45 AC 235 ms
34,460 KB
testcase_46 AC 235 ms
34,028 KB
testcase_47 AC 106 ms
26,964 KB
testcase_48 AC 101 ms
25,964 KB
testcase_49 AC 110 ms
26,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = int(input())
A = tuple(map(int, input().split()))
B = map(int, input().split())
B_idx = {x: i for i, x in enumerate(B)}

h = [N + 1]
ans = []
for a in reversed(A):
    if B_idx[a] < h[0]:
        ans.append(a)
        heapq.heappush(h, B_idx[a])
ans.sort()
print(*ans, sep='\n')
0