結果

問題 No.610 区間賞(Section Award)
ユーザー RyutoRyuto
提出日時 2017-12-12 17:19:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 453 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-05-08 04:55:04
合計ジャッジ時間 5,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
51,956 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 42 ms
52,992 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 41 ms
52,864 KB
testcase_09 AC 38 ms
52,736 KB
testcase_10 AC 39 ms
53,120 KB
testcase_11 AC 41 ms
52,992 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 40 ms
52,736 KB
testcase_14 AC 40 ms
52,864 KB
testcase_15 AC 40 ms
52,552 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 40 ms
52,608 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 185 ms
66,048 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

n = int(input().strip())
sorder = [int(x) for x in input().split()]
forder = [int(x) for x in input().split()]

index = -1
x = 0
while index < n-1:
    tmp = sorder.index(forder[x])
    if tmp < index:
        pass
    elif tmp == n-1:
        del forder[x+1:]
        break
    else:
        for i in range(index+1, tmp):
            forder.remove(sorder[i])
        index = tmp
    x += 1

for i in sorted(forder):
    print(i)
0