結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー ryo_nryo_n
提出日時 2020-07-17 23:15:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 761 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 162,176 KB
最終ジャッジ日時 2024-11-30 02:53:49
合計ジャッジ時間 55,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
81,664 KB
testcase_01 AC 36 ms
155,136 KB
testcase_02 AC 37 ms
56,832 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 98 ms
69,376 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 40 ms
57,088 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 38 ms
57,088 KB
testcase_16 AC 36 ms
137,344 KB
testcase_17 AC 36 ms
57,088 KB
testcase_18 AC 43 ms
162,176 KB
testcase_19 AC 43 ms
63,488 KB
testcase_20 AC 36 ms
141,952 KB
testcase_21 AC 35 ms
57,216 KB
testcase_22 AC 36 ms
149,248 KB
testcase_23 AC 267 ms
81,152 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,038 ms
79,232 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,991 ms
81,152 KB
testcase_32 AC 880 ms
78,080 KB
testcase_33 AC 98 ms
102,912 KB
testcase_34 AC 38 ms
51,840 KB
testcase_35 AC 37 ms
52,096 KB
testcase_36 AC 37 ms
51,968 KB
testcase_37 AC 37 ms
51,712 KB
testcase_38 AC 40 ms
51,840 KB
testcase_39 AC 39 ms
158,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 8)

input = sys.stdin.readline


def main():
    N = int(input())
    A = [int(x) for x in input().split()]
    B = [int(x) for x in input().split()]

    dic = {}
    for i, b in enumerate(B):
        dic[b] = i

    C = []
    for a in A:
        C.append(dic[a])

    def babble_sort(arr):
        N = len(arr)

        x = 0
        for i in range(N - 1):

            cnt = 0

            for j in range(0, N - 1 - i):
                if arr[j] > arr[j + 1]:
                    arr[j], arr[j + 1] = arr[j + 1], arr[j]
                    cnt = cnt + 1
                    x += 1

            if cnt == 0:
                return x

        return x

    print(babble_sort(C))


if __name__ == '__main__':
    main()
0