結果

問題 No.610 区間賞(Section Award)
ユーザー pluto77pluto77
提出日時 2018-02-21 09:45:49
言語 Python2
(2.7.18)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 18,080 KB
最終ジャッジ日時 2024-09-14 13:43:15
合計ジャッジ時間 6,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 11 ms
6,272 KB
testcase_07 AC 11 ms
6,400 KB
testcase_08 AC 12 ms
6,272 KB
testcase_09 AC 11 ms
6,400 KB
testcase_10 AC 12 ms
6,400 KB
testcase_11 AC 11 ms
6,400 KB
testcase_12 AC 11 ms
6,144 KB
testcase_13 AC 12 ms
6,272 KB
testcase_14 AC 12 ms
6,400 KB
testcase_15 AC 12 ms
6,272 KB
testcase_16 AC 11 ms
6,400 KB
testcase_17 AC 11 ms
6,272 KB
testcase_18 AC 11 ms
6,272 KB
testcase_19 AC 36 ms
8,624 KB
testcase_20 AC 140 ms
17,756 KB
testcase_21 AC 27 ms
7,764 KB
testcase_22 AC 95 ms
13,784 KB
testcase_23 AC 22 ms
7,064 KB
testcase_24 AC 41 ms
9,084 KB
testcase_25 AC 18 ms
6,784 KB
testcase_26 AC 68 ms
11,472 KB
testcase_27 AC 138 ms
17,592 KB
testcase_28 AC 122 ms
16,088 KB
testcase_29 AC 91 ms
13,520 KB
testcase_30 AC 116 ms
15,640 KB
testcase_31 AC 63 ms
10,820 KB
testcase_32 AC 132 ms
16,888 KB
testcase_33 AC 27 ms
7,756 KB
testcase_34 AC 139 ms
17,740 KB
testcase_35 AC 69 ms
11,500 KB
testcase_36 AC 133 ms
16,972 KB
testcase_37 AC 110 ms
15,320 KB
testcase_38 AC 38 ms
8,576 KB
testcase_39 AC 143 ms
18,080 KB
testcase_40 AC 143 ms
18,080 KB
testcase_41 AC 140 ms
17,956 KB
testcase_42 AC 142 ms
17,956 KB
testcase_43 AC 146 ms
17,828 KB
testcase_44 AC 187 ms
15,820 KB
testcase_45 AC 227 ms
17,732 KB
testcase_46 AC 232 ms
17,908 KB
testcase_47 AC 120 ms
15,992 KB
testcase_48 AC 113 ms
15,044 KB
testcase_49 AC 123 ms
16,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki610

n=int(raw_input())
a=map(int,raw_input().split())
b=map(int,raw_input().split())
m=[0 for i in xrange(n+1)]
for i,x in enumerate(a):
 m[x]=i
ma=-1
res=[]
for y in b:
 if ma<=m[y]:
  ma=m[y]
  res.append(y)
res.sort()
for i in xrange(len(res)):
 print res[i]
0