結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,400 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 11 ms
6,272 KB
testcase_05 AC 11 ms
6,400 KB
testcase_06 AC 12 ms
6,272 KB
testcase_07 AC 12 ms
6,400 KB
testcase_08 AC 13 ms
6,400 KB
testcase_09 AC 12 ms
6,528 KB
testcase_10 AC 12 ms
6,400 KB
testcase_11 AC 12 ms
6,400 KB
testcase_12 AC 12 ms
6,272 KB
testcase_13 AC 12 ms
6,400 KB
testcase_14 AC 13 ms
6,400 KB
testcase_15 AC 12 ms
6,528 KB
testcase_16 AC 12 ms
6,400 KB
testcase_17 AC 12 ms
6,272 KB
testcase_18 AC 11 ms
6,400 KB
testcase_19 AC 43 ms
8,728 KB
testcase_20 AC 179 ms
17,968 KB
testcase_21 AC 34 ms
7,940 KB
testcase_22 AC 119 ms
14,124 KB
testcase_23 AC 25 ms
7,376 KB
testcase_24 AC 49 ms
9,128 KB
testcase_25 AC 21 ms
7,040 KB
testcase_26 AC 85 ms
11,600 KB
testcase_27 AC 174 ms
17,620 KB
testcase_28 AC 154 ms
16,352 KB
testcase_29 AC 112 ms
13,660 KB
testcase_30 AC 144 ms
15,632 KB
testcase_31 AC 78 ms
11,136 KB
testcase_32 AC 171 ms
16,988 KB
testcase_33 AC 32 ms
7,796 KB
testcase_34 AC 177 ms
17,924 KB
testcase_35 AC 85 ms
11,808 KB
testcase_36 AC 171 ms
17,356 KB
testcase_37 AC 143 ms
15,596 KB
testcase_38 AC 45 ms
8,732 KB
testcase_39 AC 182 ms
17,888 KB
testcase_40 AC 182 ms
18,144 KB
testcase_41 AC 180 ms
18,144 KB
testcase_42 AC 181 ms
18,016 KB
testcase_43 AC 182 ms
18,144 KB
testcase_44 AC 206 ms
21,596 KB
testcase_45 AC 248 ms
24,664 KB
testcase_46 AC 252 ms
25,012 KB
testcase_47 AC 151 ms
15,984 KB
testcase_48 AC 140 ms
15,280 KB
testcase_49 AC 157 ms
16,228 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