結果

問題 No.610 区間賞(Section Award)
ユーザー hiro1729hiro1729
提出日時 2024-09-22 20:43:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 103,844 KB
最終ジャッジ日時 2024-09-22 20:43:36
合計ジャッジ時間 5,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,492 KB
testcase_01 AC 38 ms
52,216 KB
testcase_02 AC 36 ms
52,488 KB
testcase_03 AC 37 ms
53,020 KB
testcase_04 AC 38 ms
52,692 KB
testcase_05 AC 37 ms
53,832 KB
testcase_06 AC 40 ms
59,888 KB
testcase_07 AC 37 ms
52,688 KB
testcase_08 AC 41 ms
58,908 KB
testcase_09 AC 38 ms
52,148 KB
testcase_10 AC 40 ms
58,488 KB
testcase_11 AC 41 ms
58,564 KB
testcase_12 AC 37 ms
51,884 KB
testcase_13 AC 41 ms
58,772 KB
testcase_14 AC 41 ms
58,308 KB
testcase_15 AC 39 ms
58,832 KB
testcase_16 AC 40 ms
59,828 KB
testcase_17 AC 41 ms
57,848 KB
testcase_18 AC 37 ms
52,892 KB
testcase_19 AC 49 ms
68,612 KB
testcase_20 AC 79 ms
101,908 KB
testcase_21 AC 45 ms
65,688 KB
testcase_22 AC 67 ms
90,068 KB
testcase_23 AC 44 ms
63,848 KB
testcase_24 AC 50 ms
70,112 KB
testcase_25 AC 44 ms
62,872 KB
testcase_26 AC 58 ms
79,104 KB
testcase_27 AC 78 ms
101,760 KB
testcase_28 AC 74 ms
97,844 KB
testcase_29 AC 65 ms
86,408 KB
testcase_30 AC 72 ms
94,740 KB
testcase_31 AC 57 ms
78,144 KB
testcase_32 AC 74 ms
98,264 KB
testcase_33 AC 46 ms
66,212 KB
testcase_34 AC 79 ms
102,256 KB
testcase_35 AC 59 ms
80,832 KB
testcase_36 AC 77 ms
101,456 KB
testcase_37 AC 72 ms
94,660 KB
testcase_38 AC 48 ms
70,064 KB
testcase_39 AC 80 ms
102,484 KB
testcase_40 AC 80 ms
102,424 KB
testcase_41 AC 79 ms
102,380 KB
testcase_42 AC 80 ms
101,928 KB
testcase_43 AC 81 ms
102,244 KB
testcase_44 AC 108 ms
102,104 KB
testcase_45 AC 118 ms
103,600 KB
testcase_46 AC 117 ms
103,844 KB
testcase_47 AC 74 ms
96,428 KB
testcase_48 AC 71 ms
93,556 KB
testcase_49 AC 74 ms
96,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [-1] * N
for i in range(N):
	A[i] -= 1
	B[i] -= 1
	C[A[i]] = i
mx = -1
ans = []
for i in B:
	if C[i] > mx:
		mx = C[i]
		ans.append(i)
ans.sort()
for i in ans:
	print(i + 1)
0