結果

問題 No.610 区間賞(Section Award)
ユーザー lloyzlloyz
提出日時 2023-05-09 00:04:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 104,972 KB
最終ジャッジ日時 2024-11-25 13:13:22
合計ジャッジ時間 6,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,072 KB
testcase_01 AC 38 ms
52,624 KB
testcase_02 AC 38 ms
53,220 KB
testcase_03 AC 39 ms
53,024 KB
testcase_04 AC 41 ms
52,696 KB
testcase_05 AC 38 ms
53,104 KB
testcase_06 AC 44 ms
59,028 KB
testcase_07 AC 41 ms
53,720 KB
testcase_08 AC 45 ms
59,168 KB
testcase_09 AC 39 ms
53,628 KB
testcase_10 AC 41 ms
59,260 KB
testcase_11 AC 43 ms
59,464 KB
testcase_12 AC 39 ms
53,040 KB
testcase_13 AC 40 ms
58,856 KB
testcase_14 AC 41 ms
59,468 KB
testcase_15 AC 41 ms
58,356 KB
testcase_16 AC 41 ms
58,976 KB
testcase_17 AC 40 ms
59,484 KB
testcase_18 AC 38 ms
52,820 KB
testcase_19 AC 57 ms
71,876 KB
testcase_20 AC 96 ms
104,752 KB
testcase_21 AC 51 ms
67,784 KB
testcase_22 AC 74 ms
92,292 KB
testcase_23 AC 49 ms
65,472 KB
testcase_24 AC 60 ms
73,196 KB
testcase_25 AC 51 ms
64,928 KB
testcase_26 AC 65 ms
81,772 KB
testcase_27 AC 98 ms
104,496 KB
testcase_28 AC 87 ms
99,548 KB
testcase_29 AC 75 ms
87,752 KB
testcase_30 AC 85 ms
95,720 KB
testcase_31 AC 68 ms
80,848 KB
testcase_32 AC 91 ms
101,516 KB
testcase_33 AC 51 ms
67,140 KB
testcase_34 AC 92 ms
104,312 KB
testcase_35 AC 67 ms
83,084 KB
testcase_36 AC 95 ms
104,528 KB
testcase_37 AC 81 ms
95,436 KB
testcase_38 AC 58 ms
71,296 KB
testcase_39 AC 96 ms
104,960 KB
testcase_40 AC 95 ms
104,948 KB
testcase_41 AC 95 ms
104,840 KB
testcase_42 AC 94 ms
104,584 KB
testcase_43 AC 94 ms
104,488 KB
testcase_44 AC 111 ms
102,536 KB
testcase_45 AC 132 ms
104,972 KB
testcase_46 AC 131 ms
104,480 KB
testcase_47 AC 83 ms
98,320 KB
testcase_48 AC 79 ms
94,684 KB
testcase_49 AC 85 ms
99,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Price = [-1 for _ in range(n)]
for i in range(n):
    Price[B[i] - 1] = i
ANS = []
P = [False for _ in range(n)]
idx = 0
for i in range(n):
    a = A[i] - 1
    f = i
    l = Price[a]
    P[l] = True
    if idx == l:
        ANS.append(a + 1)
        while idx < n and P[idx]:
            idx += 1
ANS.sort()
print(*ANS, sep='\n')
0