結果

問題 No.610 区間賞(Section Award)
ユーザー 👑 rin204rin204
提出日時 2022-02-12 22:23:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 105,944 KB
最終ジャッジ日時 2024-06-29 01:39:02
合計ジャッジ時間 7,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,456 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 35 ms
51,584 KB
testcase_06 AC 39 ms
57,984 KB
testcase_07 AC 35 ms
52,480 KB
testcase_08 AC 40 ms
58,624 KB
testcase_09 AC 39 ms
52,992 KB
testcase_10 AC 41 ms
58,496 KB
testcase_11 AC 41 ms
58,880 KB
testcase_12 AC 35 ms
51,840 KB
testcase_13 AC 38 ms
58,240 KB
testcase_14 AC 40 ms
58,752 KB
testcase_15 AC 38 ms
58,624 KB
testcase_16 AC 38 ms
58,240 KB
testcase_17 AC 37 ms
58,368 KB
testcase_18 AC 34 ms
52,224 KB
testcase_19 AC 66 ms
73,984 KB
testcase_20 AC 182 ms
104,064 KB
testcase_21 AC 59 ms
69,376 KB
testcase_22 AC 131 ms
96,352 KB
testcase_23 AC 52 ms
66,432 KB
testcase_24 AC 70 ms
76,416 KB
testcase_25 AC 46 ms
64,128 KB
testcase_26 AC 102 ms
92,032 KB
testcase_27 AC 171 ms
104,064 KB
testcase_28 AC 171 ms
100,864 KB
testcase_29 AC 130 ms
94,464 KB
testcase_30 AC 153 ms
98,468 KB
testcase_31 AC 105 ms
92,160 KB
testcase_32 AC 166 ms
100,480 KB
testcase_33 AC 58 ms
69,248 KB
testcase_34 AC 180 ms
104,192 KB
testcase_35 AC 108 ms
93,184 KB
testcase_36 AC 187 ms
104,064 KB
testcase_37 AC 155 ms
98,304 KB
testcase_38 AC 64 ms
75,008 KB
testcase_39 AC 191 ms
103,936 KB
testcase_40 AC 184 ms
104,692 KB
testcase_41 AC 180 ms
103,936 KB
testcase_42 AC 188 ms
104,192 KB
testcase_43 AC 185 ms
104,572 KB
testcase_44 AC 211 ms
99,528 KB
testcase_45 AC 274 ms
105,728 KB
testcase_46 AC 243 ms
105,944 KB
testcase_47 AC 162 ms
101,112 KB
testcase_48 AC 143 ms
98,304 KB
testcase_49 AC 165 ms
101,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
C = [0] * n
for i, a in enumerate(A, 1): C[a - 1] = i
A = C
B = list(map(int, input().split()))
C = [0] * n
for i, a in enumerate(B, 1): C[a - 1] = i
B = C
ab = [(a, b, i) for i, (a, b) in enumerate(zip(A, B), 1)]
ab.sort(key = lambda x:x[1])
ans = []
max_ = 0
for a, b, i in ab:
    if a > max_:
        ans.append(i)
        max_ = a
ans.sort()
print(*ans, sep="\n")
0