結果

問題 No.610 区間賞(Section Award)
ユーザー GrayCoderGrayCoder
提出日時 2017-12-11 21:18:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,784 KB
最終ジャッジ日時 2024-11-30 21:00:18
合計ジャッジ時間 8,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = tuple(map(int, input().split()))
    B = tuple(map(int, input().split()))

    safe = []
    apnd_safe = safe.append
    out = set()
    apnd_out = out.add
    a = {j: i for i, j in enumerate(A)}
    for i, j in enumerate(B):
        k = a[j]
        if i <= k and j not in out:
            apnd_safe(j)
            for x in A[i:k]:
                apnd_out(x)

    safe.sort()
    print(*safe, sep='\n')

main()
0