結果

問題 No.610 区間賞(Section Award)
ユーザー maspymaspy
提出日時 2020-03-04 10:00:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,296 KB
最終ジャッジ日時 2024-10-13 23:33:27
合計ジャッジ時間 6,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 25 ms
10,880 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 24 ms
10,624 KB
testcase_19 AC 42 ms
14,168 KB
testcase_20 AC 119 ms
30,296 KB
testcase_21 AC 37 ms
13,440 KB
testcase_22 AC 83 ms
23,556 KB
testcase_23 AC 32 ms
12,416 KB
testcase_24 AC 46 ms
15,688 KB
testcase_25 AC 30 ms
11,904 KB
testcase_26 AC 66 ms
21,164 KB
testcase_27 AC 125 ms
30,408 KB
testcase_28 AC 109 ms
25,444 KB
testcase_29 AC 85 ms
22,884 KB
testcase_30 AC 104 ms
25,316 KB
testcase_31 AC 64 ms
18,268 KB
testcase_32 AC 112 ms
30,312 KB
testcase_33 AC 36 ms
13,312 KB
testcase_34 AC 120 ms
30,408 KB
testcase_35 AC 71 ms
21,152 KB
testcase_36 AC 118 ms
29,480 KB
testcase_37 AC 98 ms
23,460 KB
testcase_38 AC 43 ms
14,208 KB
testcase_39 AC 124 ms
30,424 KB
testcase_40 AC 126 ms
30,340 KB
testcase_41 AC 125 ms
30,312 KB
testcase_42 AC 122 ms
30,356 KB
testcase_43 AC 127 ms
30,464 KB
testcase_44 AC 137 ms
27,828 KB
testcase_45 AC 163 ms
33,012 KB
testcase_46 AC 161 ms
33,296 KB
testcase_47 AC 103 ms
25,404 KB
testcase_48 AC 98 ms
23,136 KB
testcase_49 AC 106 ms
25,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
N = int(readline())
A = list(map(int, readline().split()))
B = list(map(int, readline().split()))


# %%
start_rank = {x: i for i, x in enumerate(A)}
max_start_rank = -1
answer = []
for b in B:
    rank = start_rank[b]
    if rank > max_start_rank:
        answer.append(b)
        max_start_rank = rank

# %%
answer.sort()
print('\n'.join(map(str, answer)))
0