結果

問題 No.610 区間賞(Section Award)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-10 14:07:15
言語 Python2
(2.7.18)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,016 KB
最終ジャッジ日時 2024-11-30 11:17:36
合計ジャッジ時間 5,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,820 KB
testcase_01 AC 9 ms
6,816 KB
testcase_02 AC 8 ms
6,820 KB
testcase_03 AC 9 ms
6,816 KB
testcase_04 AC 9 ms
6,820 KB
testcase_05 AC 9 ms
6,820 KB
testcase_06 AC 10 ms
6,816 KB
testcase_07 AC 9 ms
6,816 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 10 ms
6,816 KB
testcase_10 AC 11 ms
6,820 KB
testcase_11 AC 11 ms
6,820 KB
testcase_12 AC 9 ms
6,816 KB
testcase_13 AC 10 ms
6,820 KB
testcase_14 AC 10 ms
6,816 KB
testcase_15 AC 10 ms
6,816 KB
testcase_16 AC 10 ms
6,820 KB
testcase_17 AC 10 ms
6,816 KB
testcase_18 AC 10 ms
6,816 KB
testcase_19 AC 38 ms
8,724 KB
testcase_20 AC 149 ms
17,716 KB
testcase_21 AC 28 ms
7,812 KB
testcase_22 AC 101 ms
13,864 KB
testcase_23 AC 22 ms
7,376 KB
testcase_24 AC 44 ms
8,872 KB
testcase_25 AC 17 ms
7,040 KB
testcase_26 AC 71 ms
11,472 KB
testcase_27 AC 147 ms
17,616 KB
testcase_28 AC 128 ms
16,480 KB
testcase_29 AC 97 ms
13,404 KB
testcase_30 AC 122 ms
15,764 KB
testcase_31 AC 65 ms
11,008 KB
testcase_32 AC 137 ms
17,016 KB
testcase_33 AC 28 ms
7,668 KB
testcase_34 AC 148 ms
17,672 KB
testcase_35 AC 71 ms
11,676 KB
testcase_36 AC 144 ms
17,284 KB
testcase_37 AC 119 ms
15,468 KB
testcase_38 AC 41 ms
8,480 KB
testcase_39 AC 154 ms
17,884 KB
testcase_40 AC 156 ms
18,016 KB
testcase_41 AC 157 ms
17,884 KB
testcase_42 AC 151 ms
18,012 KB
testcase_43 AC 149 ms
18,016 KB
testcase_44 AC 183 ms
21,464 KB
testcase_45 AC 213 ms
24,536 KB
testcase_46 AC 216 ms
25,016 KB
testcase_47 AC 127 ms
15,860 KB
testcase_48 AC 120 ms
15,280 KB
testcase_49 AC 134 ms
15,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
n = int(raw_input())
a = map(lambda x: int(x)-1, raw_input().split())
b = map(lambda x: int(x)-1, raw_input().split())
x = [None] * n # x[i] := 人 i の順位
for i, p in enumerate(a):
    x[p] = i

maxi = -1
resArr = []
for i, p in enumerate(b):
    j = x[p] # i 位になった人 p は j 位だった
    if j > maxi:
        resArr.append(p+1)
        maxi = j
resArr.sort()
res = '\n'.join(map(str, resArr))
print res
0