結果

問題 No.610 区間賞(Section Award)
ユーザー titiatitia
提出日時 2024-01-02 07:06:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,908 KB
最終ジャッジ日時 2024-09-27 17:38:57
合計ジャッジ時間 10,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 29 ms
11,008 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 29 ms
10,880 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 72 ms
17,152 KB
testcase_20 AC 298 ms
42,032 KB
testcase_21 AC 56 ms
15,104 KB
testcase_22 AC 206 ms
31,700 KB
testcase_23 AC 48 ms
13,312 KB
testcase_24 AC 77 ms
18,508 KB
testcase_25 AC 38 ms
12,544 KB
testcase_26 AC 132 ms
25,660 KB
testcase_27 AC 317 ms
42,596 KB
testcase_28 AC 275 ms
38,048 KB
testcase_29 AC 198 ms
30,304 KB
testcase_30 AC 257 ms
36,092 KB
testcase_31 AC 120 ms
23,740 KB
testcase_32 AC 274 ms
39,876 KB
testcase_33 AC 56 ms
14,848 KB
testcase_34 AC 301 ms
42,800 KB
testcase_35 AC 129 ms
25,324 KB
testcase_36 AC 284 ms
40,512 KB
testcase_37 AC 241 ms
36,244 KB
testcase_38 AC 73 ms
17,536 KB
testcase_39 AC 313 ms
43,712 KB
testcase_40 AC 310 ms
43,844 KB
testcase_41 AC 325 ms
43,712 KB
testcase_42 AC 323 ms
43,716 KB
testcase_43 AC 327 ms
43,712 KB
testcase_44 AC 350 ms
38,196 KB
testcase_45 AC 453 ms
44,720 KB
testcase_46 AC 453 ms
44,908 KB
testcase_47 AC 255 ms
37,180 KB
testcase_48 AC 248 ms
35,988 KB
testcase_49 AC 269 ms
37,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

A_INV=[0]*N
B_INV=[0]*N

for i in range(N):
    A_INV[A[i]-1]=i
    B_INV[B[i]-1]=i

E=[[] for i in range(N)]

for i in range(N):
    E[A_INV[i]].append((B_INV[i],i+1))

ANS=[]
MAX=N+1000

for i in range(N-1,-1,-1):
    now,plus=E[i][0]

    if now<MAX:
        ANS.append(plus)
        MAX=min(MAX,now)

for ans in sorted(ANS):
    print(ans)
0